diff -r 635b6c5a36e1 -r be9f8e7e42e0 src/eric7/MicroPython/MicroPythonCommandsInterface.py --- a/src/eric7/MicroPython/MicroPythonCommandsInterface.py Tue Dec 06 16:57:54 2022 +0100 +++ b/src/eric7/MicroPython/MicroPythonCommandsInterface.py Tue Dec 06 17:35:41 2022 +0100 @@ -832,7 +832,7 @@ "stat_ = __os_.statvfs('/flash')", "res['flash_total_kb'] = stat_[2] * stat_[0] / 1024.0", "res['flash_free_kb'] = stat_[3] * stat_[0] / 1024.0", - "res['flash_used_kb'] = res['flash_total_kb'] -" " res['flash_free_kb']", + "res['flash_used_kb'] = res['flash_total_kb'] - res['flash_free_kb']", "res['flash_free_pc'] = res['flash_free_kb'] /" " res['flash_total_kb'] * 100.0", "res['flash_used_pc'] = res['flash_used_kb'] /"