diff --git a/src/main.py b/src/main.py index d88a3c6..1384c37 100755 --- a/src/main.py +++ b/src/main.py @@ -186,7 +186,7 @@ def main(): arguments = parser.parse_args() # Redirect stdout when the bot first initializes if the bot is not going to run normally - redirect_stdout = None if arguments.output_hashes or arguments.help else sys.stdout + redirect_stdout = None if arguments.help else sys.stdout # Yandere Lewd Bot yandere = None @@ -201,7 +201,7 @@ def main(): raise FailedToLoadCfg # Flag if the bot is running in debug mode - debug_mode = (arguments.dry_run or arguments.debug or arguments.output_hashes or arguments.help) + debug_mode = (arguments.dry_run or arguments.debug or arguments.help) with contextlib.redirect_stdout(redirect_stdout): prime_bot = not arguments.help