From 8d202e0f34a224df3c98b446fcdaec1df1767128 Mon Sep 17 00:00:00 2001 From: Josh Watson Date: Thu, 6 Sep 2018 20:28:42 -0700 Subject: Fix an incorrect field name in FlowGraphLayoutRequest._complete --- python/flowgraph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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()) -- cgit v1.3.1