We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff52783 commit 06a0b68Copy full SHA for 06a0b68
kernel/src/kernel.ts
@@ -5,7 +5,7 @@ import { ServiceContainer } from './services/ServiceContainer';
5
const reconnectString: string = "%connect%"
6
const saveString: string = "%save%";
7
const bootFileName: string = "boot.py";
8
-const bootSavePrefix: string = `with open(${bootFileName}, 'w') as f:\n f.write('''\n`;
+const bootSavePrefix: string = `with open('${bootFileName}', 'w') as f:\n f.write('''\n`;
9
const bootSaveSuffix: string = "\n''')\n";
10
11
export class EmbeddedKernel extends BaseKernel {
0 commit comments