mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
Remove -h from arg logic because it's not used and collides with help
This commit is contained in:
parent
767895bfeb
commit
ac09641220
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class Game:
|
|||
|
||||
def __init__(self, data):
|
||||
self.args = argv[1:]
|
||||
if '-h' in self.args or '--human-folders' in self.args:
|
||||
if '--human-folders' in self.args:
|
||||
self.humanFolders = True
|
||||
else:
|
||||
self.humanFolders = False
|
||||
|
|
|
|||
Loading…
Reference in a new issue