Skip to content

Commit 3cdfd45

Browse files
Update source.py
1 parent 1530a54 commit 3cdfd45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opengsq/protocols/source.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,9 @@ class RemoteConsole(ProtocolBase):
325325

326326
full_name = 'Source RCON Protocol'
327327

328-
def __init__(self, address: str, query_port: int = 27015, timeout: float = 5.0):
328+
def __init__(self, host: str, port: int = 27015, timeout: float = 5.0):
329329
"""Source RCON Protocol"""
330-
super().__init__(address, query_port, timeout)
330+
super().__init__(host, port, timeout)
331331

332332
self._sock = None
333333

0 commit comments

Comments
 (0)