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)