3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-28 05:32:51 +01:00

TS6Protocol: Missing logging argument in handle_realhost

Signed-off-by: Celelibi <celelibi@gmail.com>
This commit is contained in:
Celelibi 2020-06-19 01:57:04 +02:00 committed by James Lu
parent 03c9c71dc3
commit b49d5775e2

View File

@ -746,7 +746,7 @@ class TS6Protocol(TS6BaseProtocol):
def handle_realhost(self, uid, command, args):
"""Handles real host propagation."""
log.debug('(%s) Got REALHOST %s for %s', args[0], uid)
log.debug('(%s) Got REALHOST %s for %s', self.name, args[0], uid)
self.users[uid].realhost = args[0]
def handle_login(self, uid, command, args):