laneya

multiplayer roguelike game
git clone https://git.ce9e.org/laneya.git

commit
42cdca92e6ba0ecb65da54ea3ce9905caad5973b
parent
443849e4a5c4e5903efbf8d452f633ea0281e829
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2014-10-04 16:04
Fixup

Diffstat

M laneya/protocol.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/laneya/protocol.py b/laneya/protocol.py

@@ -197,7 +197,7 @@ class Protocol(JSONProtocol):
  197   197 
  198   198         d = q.Deferred()
  199   199         self._responseDeferreds[data['key']] = d
  200    -1         reactor.callLater(10, self._timeout(d, data['key']))
   -1   200         reactor.callLater(10, lambda: self._timeout(d, data['key']))
  201   201         return d.promise
  202   202 
  203   203     def _sendResponse(self, key, status, **kwargs):