summaryrefslogtreecommitdiff
path: root/supervisor/shared/filesystem.c
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2021-01-12 09:23:07 -0600
committerJeff Epler <jepler@gmail.com>2021-01-12 09:23:07 -0600
commit1ca29ec47c9f51589faa151b659dfd1dd4a349ef (patch)
tree0a2e35b45a52e85f258cc522615e37965b0453d3 /supervisor/shared/filesystem.c
parente20c65d8f044cb9522cd1a7f4a3030efefa77cbb (diff)
parent047708e36e67beee14771120296cdf758f00601d (diff)
Merge remote-tracking branch 'origin/main' into audioout-esp32
Diffstat (limited to 'supervisor/shared/filesystem.c')
-rw-r--r--supervisor/shared/filesystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/supervisor/shared/filesystem.c b/supervisor/shared/filesystem.c
index 88603be0c..618dc796b 100644
--- a/supervisor/shared/filesystem.c
+++ b/supervisor/shared/filesystem.c
@@ -74,7 +74,7 @@ static void make_sample_code_file(FATFS *fatfs) {
#if CIRCUITPY_FULL_BUILD
FIL fs;
UINT char_written = 0;
- const byte buffer[] = "print('Hello World!')\n";
+ const byte buffer[] = "print(\"Hello World!\")\n";
//Create or modify existing code.py file
f_open(fatfs, &fs, "/code.py", FA_WRITE | FA_CREATE_ALWAYS);
f_write(&fs, buffer, sizeof(buffer) - 1, &char_written);