Explorar o código

Update gwen.ts

Salil Gokhale %!s(int64=5) %!d(string=hai) anos
pai
achega
f702a36416
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/gwen.ts

+ 2 - 1
src/gwen.ts

@@ -6,8 +6,9 @@ import { join } from "path";
 const DEFAULT = 'import random\n\nprint(random.randint(1, 100))\n';
 
 export function create(problemPath: string, outputPath: string) {
+    let python_path: string | undefined = vscode.workspace.getConfiguration('acmx.execution', null).get('pythonPath');
     let tcPath = join(problemPath, TESTCASES);
-    let exitCode = spawnSync("python3", ["-m", `tcgen`, "--path", `${tcPath}`, "--output", `${outputPath}`]);
+    let exitCode = spawnSync(python_path, ["-m", `tcgen`, "--path", `${tcPath}`, "--output", `${outputPath}`]);
 
     console.log("exticode:", exitCode);