summaryrefslogtreecommitdiff
path: root/distbuild/jm.py
diff options
context:
space:
mode:
Diffstat (limited to 'distbuild/jm.py')
-rw-r--r--distbuild/jm.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/distbuild/jm.py b/distbuild/jm.py
index bb86adc4..a4e366a7 100644
--- a/distbuild/jm.py
+++ b/distbuild/jm.py
@@ -56,6 +56,7 @@ class JsonMachine(StateMachine):
self.receive_buf = StringBuffer()
spec = [
+ # state, source, event_class, new_state, callback
('rw', sockbuf, SocketBufferNewData, 'rw', self._parse),
('rw', sockbuf, SocketBufferEof, 'w', self._send_eof),
('rw', self, _Close2, None, self._really_close),