diff options
| -rw-r--r-- | python/flowgraph.py | 4 |
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()) |
