Browse Source

Added raw=False kwarg to Client.run().

pull/2/head 1.0.2
Richard Neumann 4 years ago
parent
commit
122b9a90d6
  1. 4
      rcon/proto.py

4
rcon/proto.py

@ -170,7 +170,7 @@ class Client:
return True
def run(self, command: str, *arguments: str) -> str:
def run(self, command: str, *arguments: str, raw: bool = False) -> str:
"""Runs a command."""
packet = Packet.from_args(command, *arguments)
@ -183,4 +183,4 @@ class Client:
raise
return response.payload
return response if raw else response.payload

Loading…
Cancel
Save