* Fix #1570
This commit is contained in:
Michel Oosterhof
2021-05-30 12:51:55 +08:00
committed by GitHub
parent b8be378586
commit 705de8e16c

View File

@ -371,7 +371,7 @@ class fseditCmd(cmd.Cmd):
if len(args) == 1:
size = 4096
else:
size = args[1]
size = int(args[1])
# set the last update time stamp to now
ctime = time.time()