diff options
author | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2015-09-23 18:14:08 +0100 |
---|---|---|
committer | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2015-09-24 11:24:36 +0000 |
commit | a751e4fc1ab7b00ae70f12f498d2050a5fb71445 (patch) | |
tree | 94bd038495f06a46ade459f72face80bf5ff7392 /distbuild/jm.py | |
parent | f9c02205608356b4c57611509b574e3874d243a9 (diff) | |
download | morph-a751e4fc1ab7b00ae70f12f498d2050a5fb71445.tar.gz |
Allow Morph code to be run with Python 2.7 and Python 3.4sam/python3
PRETTY BROKEN!
Change-Id: I92545c821103eea1316383086e77e6b654f2321c
Diffstat (limited to 'distbuild/jm.py')
-rw-r--r-- | distbuild/jm.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distbuild/jm.py b/distbuild/jm.py index d1e5fab7..3223a8a9 100644 --- a/distbuild/jm.py +++ b/distbuild/jm.py @@ -23,9 +23,9 @@ import socket import sys import yaml -from sm import StateMachine -from stringbuffer import StringBuffer -from sockbuf import (SocketBuffer, SocketBufferNewData, +from .sm import StateMachine +from .stringbuffer import StringBuffer +from .sockbuf import (SocketBuffer, SocketBufferNewData, SocketBufferEof, SocketError) |