fix whitespace

This commit is contained in:
Michel Oosterhof
2015-04-30 16:29:09 +00:00
parent 0b4d67a75b
commit 2c92791d55

View File

@ -36,17 +36,17 @@ class DBLogger(object):
# KIPP0001 is special since it kicks off new logging session, # KIPP0001 is special since it kicks off new logging session,
# and is not handled here # and is not handled here
self.events = { self.events = {
'KIPP0002': self.handleLoginSucceeded, 'KIPP0002': self.handleLoginSucceeded,
'KIPP0003': self.handleLoginFailed, 'KIPP0003': self.handleLoginFailed,
'KIPP0004': self.handleTTYLogOpened, 'KIPP0004': self.handleTTYLogOpened,
'KIPP0005': self.handleCommand, 'KIPP0005': self.handleCommand,
'KIPP0006': self.handleUnknownCommand, 'KIPP0006': self.handleUnknownCommand,
'KIPP0007': self.handleFileDownload, 'KIPP0007': self.handleFileDownload,
'KIPP0008': self.handleInput, 'KIPP0008': self.handleInput,
'KIPP0009': self.handleClientVersion, 'KIPP0009': self.handleClientVersion,
'KIPP0010': self.handleTerminalSize, 'KIPP0010': self.handleTerminalSize,
'KIPP0011': self._connectionLost, 'KIPP0011': self._connectionLost,
'KIPP0012': self.handleTTYLogClosed, 'KIPP0012': self.handleTTYLogClosed,
} }
self.start(cfg) self.start(cfg)