summaryrefslogtreecommitdiff
path: root/distbuild/jm.py
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-04-14 14:06:57 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-04-14 14:06:57 +0000
commit78b46a60a5d482f0c302c83b200157cdb25730ca (patch)
treeca4ffee795b42a5e28c82ef5552f065c0f18ee5e /distbuild/jm.py
parent0baae51e217f4999c1f068c458527d598284ddec (diff)
downloadmorph-78b46a60a5d482f0c302c83b200157cdb25730ca.tar.gz
Fix lines longer than 80 characters (my fault)
Diffstat (limited to 'distbuild/jm.py')
-rw-r--r--distbuild/jm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/distbuild/jm.py b/distbuild/jm.py
index a4e366a7..69fa5bd1 100644
--- a/distbuild/jm.py
+++ b/distbuild/jm.py
@@ -45,8 +45,8 @@ class JsonMachine(StateMachine):
self.debug_json = False
def __repr__(self):
- return '<JsonMachine at 0x%x: socket %s, max_buffer %s>' % (id(self),
- self.conn, self.max_buffer)
+ return '<JsonMachine at 0x%x: socket %s, max_buffer %s>' % \
+ (id(self), self.conn, self.max_buffer)
def setup(self):
sockbuf = self.sockbuf = SocketBuffer(self.conn, self.max_buffer)