We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44dbd3c commit 166c09fCopy full SHA for 166c09f
builder/esp32.py
@@ -977,10 +977,7 @@ def update_panic_handler():
977
if '"MPY version : "' in data:
978
beg, end = data.split('"MPY version : "', 1)
979
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
- )
+ data = f'{beg}"LVGL MicroPython \\r\\n"{end}'
984
985
write_file(PANICHANDLER_PATH, data)
986
0 commit comments