From ac09641220ff9683ff7f88395460eec99d86e7aa Mon Sep 17 00:00:00 2001 From: 64Core Date: Sun, 19 Mar 2023 16:59:14 -0500 Subject: [PATCH] Remove -h from arg logic because it's not used and collides with help --- itchiodl/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itchiodl/game.py b/itchiodl/game.py index 01d293d..55b5641 100644 --- a/itchiodl/game.py +++ b/itchiodl/game.py @@ -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