mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 20:47:17 +02:00
Fixed a silly typo.
This commit is contained in:
parent
a0a205c945
commit
b99db98191
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue