summaryrefslogtreecommitdiff
path: root/python/flowgraph.py
diff options
context:
space:
mode:
authorJosh Watson <josh@trailofbits.com>2018-09-06 20:28:42 -0700
committerBrian Potchik <brian@vector35.com>2018-09-10 12:19:53 -0400
commit8d202e0f34a224df3c98b446fcdaec1df1767128 (patch)
treec29e9723d1a8ab9bd4f9060e9f6279053f2766d0 /python/flowgraph.py
parentf4d75c9229d2d76f36f80e97dd49c7aece242600 (diff)
Fix an incorrect field name in FlowGraphLayoutRequest._complete
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())