--- a/eric6/MicroPython/MicroPythonFileSystem.py Sat Jul 27 17:02:01 2019 +0200 +++ b/eric6/MicroPython/MicroPythonFileSystem.py Sat Jul 27 17:52:00 2019 +0200 @@ -498,6 +498,7 @@ @return tuple of tuples containing the file system name, the total size, the used size and the free size @rtype tuple of tuples of (str, int, int, int) + @exception IOError raised to indicate an issue with the device """ commands = [ "import os", @@ -569,7 +570,7 @@ """ commands = [ "import sys", - "res = {}", + "res = {}", # __IGNORE_WARNING_M613__ "\n".join([ "try:", " res['name'] = sys.implementation.name",