Skip to content

Commit 166c09f

Browse files
committed
Fixes version strings
1 parent 44dbd3c commit 166c09f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

builder/esp32.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -977,10 +977,7 @@ def update_panic_handler():
977977
if '"MPY version : "' in data:
978978
beg, end = data.split('"MPY version : "', 1)
979979
end = end.split('"\\r\\n"', 1)[1]
980-
data = (
981-
f'{beg}"LVGL MPY version : " MICROPY_VERSION_STRING " on " '
982-
f'MICROPY_BUILD_DATE MICROPY_BUILD_TYPE_PAREN "\\r\\n"{end}'
983-
)
980+
data = f'{beg}"LVGL MicroPython \\r\\n"{end}'
984981

985982
write_file(PANICHANDLER_PATH, data)
986983

0 commit comments

Comments
 (0)