src/eric7/MicroPython/MicroPythonFileManager.py

branch
eric7
changeset 9766
f0e22f3a5878
parent 9765
6378da868bb0
child 9852
b7aef103355a
equal deleted inserted replaced
9765:6378da868bb0 9766:f0e22f3a5878
96 result = [ 96 result = [
97 ( 97 (
98 decoratedName(name, mode), 98 decoratedName(name, mode),
99 mode2string(mode), 99 mode2string(mode),
100 str(size), 100 str(size),
101 mtime2string(mtime, adjustEpoch=True), 101 mtime2string(
102 mtime, adjustEpoch=not self.__device.hasCircuitPython()
103 ),
102 ) 104 )
103 for name, (mode, size, mtime) in filesList 105 for name, (mode, size, mtime) in filesList
104 ] 106 ]
105 self.longListFiles.emit(tuple(result)) 107 self.longListFiles.emit(tuple(result))
106 except Exception as exc: 108 except Exception as exc:

eric ide

mercurial