Skip to content

Commit

Permalink
Fixed wrong indentation which led to incorrect logic
Browse files Browse the repository at this point in the history
  • Loading branch information
nothingface0 committed Jun 28, 2024
1 parent a282994 commit a222a0a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/visDQMZipDaemon
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ while True:
elif os.path.exists(zinfopath):
serial += 1
continue
else:
zips[zippath] = {"size": 0, "files": []}
else:
zips[zippath] = {"size": 0, "files": []}

zips[zippath]["zinfo"] = zinfo
zips[zippath]["zinfofile"] = zinfopath
zipsize = zips[zippath]["size"]
Expand Down

0 comments on commit a222a0a

Please sign in to comment.