Browse Source

Added prompt formatting with host and port.

pull/2/head 1.1.10
Richard Neumann 4 years ago
parent
commit
9eea3c14e9
  1. 4
      rcon/console.py

4
rcon/console.py

@ -14,7 +14,7 @@ EXIT_COMMANDS = {'exit', 'quit'}
MSG_LOGIN_ABORTED = '\nLogin aborted. Bye.'
MSG_EXIT = '\nBye.'
MSG_SESSION_TIMEOUT = 'Session timed out. Please login again.'
PROMPT = 'RCON> '
PROMPT = 'RCON {host}:{port}> '
def read_host() -> str:
@ -135,6 +135,8 @@ def rconcmd(host: str, port: int, passwd: str, *, prompt: str = PROMPT):
print(MSG_EXIT)
return
prompt = prompt.format(host=host, port=port)
with Client(host, port) as client:
try:
passwd = login(client, passwd)

Loading…
Cancel
Save