From 250ed7ed5b2adecd762d3290911be6b60fd5fb83 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 22 Dec 2020 14:49:49 +0100 Subject: [PATCH] Added suppression of missing history file. --- rcon/rconshell.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rcon/rconshell.py b/rcon/rconshell.py index 810536e..80cb4e6 100644 --- a/rcon/rconshell.py +++ b/rcon/rconshell.py @@ -44,7 +44,7 @@ def main(): args = get_args() basicConfig(level=INFO, format=LOG_FORMAT) - with suppress(FileNotFoundError): + with suppress(FileNotFoundError, PermissionError): read_history_file(HIST_FILE) if args.server: @@ -55,5 +55,7 @@ def main(): with ErrorHandler(ERRORS, LOGGER): exit_code = rconcmd(host, port, passwd, prompt=args.prompt) - write_history_file(HIST_FILE) + with suppress(PermissionError): + write_history_file(HIST_FILE) + exit(exit_code)