diff options
| author | Josh Watson <josh@trailofbits.com> | 2018-09-06 20:28:42 -0700 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2018-09-10 12:19:53 -0400 |
| commit | 8d202e0f34a224df3c98b446fcdaec1df1767128 (patch) | |
| tree | c29e9723d1a8ab9bd4f9060e9f6279053f2766d0 /python/flowgraph.py | |
| parent | f4d75c9229d2d76f36f80e97dd49c7aece242600 (diff) | |
Fix an incorrect field name in FlowGraphLayoutRequest._complete
Diffstat (limited to 'python/flowgraph.py')
| -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()) |
