Browse Source

Refac.

pull/2/head
Richard Neumann 4 years ago
parent
commit
0662b83e81
  1. 12
      rcon/rconshell.py

12
rcon/rconshell.py

@ -36,7 +36,7 @@ def get_args() -> Namespace:
return parser.parse_args() return parser.parse_args()
def run() -> int: def main() -> None:
"""Runs the RCON shell.""" """Runs the RCON shell."""
args = get_args() args = get_args()
@ -48,13 +48,7 @@ def run() -> int:
host = port = passwd = None host = port = passwd = None
with ErrorHandler(ERRORS, LOGGER): with ErrorHandler(ERRORS, LOGGER):
return rconcmd(host, port, passwd, prompt=args.prompt) with CommandHistory(LOGGER):
returncode = rconcmd(host, port, passwd, prompt=args.prompt)
def main():
"""Wraps the run function."""
with CommandHistory(LOGGER):
returncode = run()
exit(returncode) exit(returncode)

Loading…
Cancel
Save