diff --git a/rcon/rconshell.py b/rcon/rconshell.py index e743466..793e503 100644 --- a/rcon/rconshell.py +++ b/rcon/rconshell.py @@ -54,7 +54,7 @@ def run() -> int: def main(): """Wraps the run function.""" - with CommandHistory(): + with CommandHistory(LOGGER): returncode = run() exit(returncode)