From 5a019101f873910a40519795ce190edb45c59df5 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Fri, 25 Dec 2020 23:35:53 +0100 Subject: [PATCH] Fixed invocation of CommandHistory. --- rcon/rconshell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)