summaryrefslogtreecommitdiff
path: root/distbuild
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-03-28 17:23:22 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-03-28 17:23:22 +0000
commit20b4bf7dbf1b4950b82113f6ffdd2ef171cfc04e (patch)
treeaee55d7e342a506dc4a37e5c70fdfa4001b11be5 /distbuild
parent8db794a8e9565fbc9dda993fc7347436a53dddd4 (diff)
downloadmorph-20b4bf7dbf1b4950b82113f6ffdd2ef171cfc04e.tar.gz
Fix _maybe_abort in distbuild
Diffstat (limited to 'distbuild')
-rw-r--r--distbuild/build_controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distbuild/build_controller.py b/distbuild/build_controller.py
index 7849db17..b00344f9 100644
--- a/distbuild/build_controller.py
+++ b/distbuild/build_controller.py
@@ -213,7 +213,7 @@ class BuildController(distbuild.StateMachine):
self.mainloop.queue_event(self, _Start())
def _maybe_abort(self, event_source, event):
- if disconnect.id == self._request['id']:
+ if event.id == self._request['id']:
self.mainloop.queue_event(self, _Abort())
def _start_graphing(self, event_source, event):