Skip to content

Commit

Permalink
Remove -h from arg logic because it's not used and collides with help
Browse files Browse the repository at this point in the history
  • Loading branch information
64Core committed Mar 19, 2023
1 parent 767895b commit ac09641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itchiodl/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac09641

Please sign in to comment.