Fixed a silly typo.

This commit is contained in:
Griatch 2012-02-25 21:15:58 +01:00
parent a0a205c945
commit b99db98191

View file

@ -221,7 +221,7 @@ class ServerSessionHandler(SessionHandler):
and see if any are dead.
"""
tcurr = time.time()
reason= _("Idle timeout exceeded, disconnecting.")2
reason= _("Idle timeout exceeded, disconnecting.")
for session in (session for session in self.sessions.values()
if session.logged_in and IDLE_TIMEOUT > 0
and (tcurr - session.cmd_last) > IDLE_TIMEOUT):