Non zero value

main
Bob Mottram 2020-12-13 22:28:39 +00:00
parent 5fe459e656
commit a5597d1dcf
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ def createInitialLastSeen(baseDir: str, httpPrefix: str) -> None:
print('lastSeenFilename: ' + lastSeenFilename)
if not os.path.isfile(lastSeenFilename):
with open(lastSeenFilename, 'w+') as fp:
fp.write(str(0))
fp.write(str(100))
break