summaryrefslogtreecommitdiff
path: root/python/flowgraph.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/flowgraph.py')
-rw-r--r--python/flowgraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/flowgraph.py b/python/flowgraph.py
index cdfab342..4d551c83 100644
--- a/python/flowgraph.py
+++ b/python/flowgraph.py
@@ -281,8 +281,8 @@ class FlowGraphLayoutRequest(object):
def _complete(self, ctxt):
try:
- if self._on_complete is not None:
- self._on_complete()
+ if self.on_complete is not None:
+ self.on_complete()
except:
log.log_error(traceback.format_exc())