summaryrefslogtreecommitdiff
path: root/supervisor/shared/filesystem.c
diff options
context:
space:
mode:
authorKattni Rembor <kattni@adafruit.com>2021-01-11 16:09:05 -0500
committerKattni Rembor <kattni@adafruit.com>2021-01-11 16:09:05 -0500
commit9e9291777f5fe3bb6f1545c62cb7285268f61cda (patch)
treee993a020b578d2826ceafc75b081bc995d475710 /supervisor/shared/filesystem.c
parent55c80754c76a115e2f128931a408e6702aee6ef4 (diff)
Update created code.py file formatting.
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..184c67b5f 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);