File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ bool run_code_py(safe_mode_t safe_mode) {
234
234
if (autoreload_is_enabled ()) {
235
235
serial_write_compressed (translate ("Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.\n" ));
236
236
} else if (safe_mode != NO_SAFE_MODE ) {
237
- serial_write_compressed (translate ("Running in safe mode! Auto-reload is off.\n" ));
237
+ serial_write_compressed (translate ("Running in safe mode! " ));
238
+ serial_write_compressed (translate ("Auto-reload is off.\n" ));
238
239
} else if (!autoreload_is_enabled ()) {
239
240
serial_write_compressed (translate ("Auto-reload is off.\n" ));
240
241
}
@@ -250,7 +251,8 @@ bool run_code_py(safe_mode_t safe_mode) {
250
251
bool found_main = false;
251
252
252
253
if (safe_mode != NO_SAFE_MODE ) {
253
- serial_write_compressed (translate ("Running in safe mode! Not running saved code.\n" ));
254
+ serial_write_compressed (translate ("Running in safe mode! " ));
255
+ serial_write_compressed (translate ("Not running saved code.\n" ));
254
256
} else {
255
257
new_status_color (MAIN_RUNNING );
256
258
You can’t perform that action at this time.
0 commit comments