From 5ec902979247d336ec5bc55abc2f41b6495ed833 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Fri, 25 Dec 2020 23:48:17 +0100 Subject: [PATCH] Fixed reading history file. --- rcon/readline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/readline.py b/rcon/readline.py index 6938afc..db75bc5 100644 --- a/rcon/readline.py +++ b/rcon/readline.py @@ -22,7 +22,7 @@ if name == 'posix': def __enter__(self): try: - read_history_file() + read_history_file(HIST_FILE) except FileNotFoundError: self.logger.warning('Could not find history file: %s', HIST_FILE)