Skip to content

Commit 06a0b68

Browse files
Fix quotes
1 parent ff52783 commit 06a0b68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/src/kernel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ServiceContainer } from './services/ServiceContainer';
55
const reconnectString: string = "%connect%"
66
const saveString: string = "%save%";
77
const bootFileName: string = "boot.py";
8-
const bootSavePrefix: string = `with open(${bootFileName}, 'w') as f:\n f.write('''\n`;
8+
const bootSavePrefix: string = `with open('${bootFileName}', 'w') as f:\n f.write('''\n`;
99
const bootSaveSuffix: string = "\n''')\n";
1010

1111
export class EmbeddedKernel extends BaseKernel {

0 commit comments

Comments
 (0)