Browse Source

Added suppression of missing history file.

pull/2/head 1.1.0
Richard Neumann 4 years ago
parent
commit
250ed7ed5b
  1. 6
      rcon/rconshell.py

6
rcon/rconshell.py

@ -44,7 +44,7 @@ def main():
args = get_args() args = get_args()
basicConfig(level=INFO, format=LOG_FORMAT) basicConfig(level=INFO, format=LOG_FORMAT)
with suppress(FileNotFoundError): with suppress(FileNotFoundError, PermissionError):
read_history_file(HIST_FILE) read_history_file(HIST_FILE)
if args.server: if args.server:
@ -55,5 +55,7 @@ def main():
with ErrorHandler(ERRORS, LOGGER): with ErrorHandler(ERRORS, LOGGER):
exit_code = rconcmd(host, port, passwd, prompt=args.prompt) 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) exit(exit_code)

Loading…
Cancel
Save