diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-04-05 22:31:52 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-04-05 22:31:52 +0200 |
commit | 061af3f319ee69612782d99f79029ee4507c3589 (patch) | |
tree | dda38dfcd47a49f06ccb179f380c7a41a5ff8a7c /grc/core | |
parent | 2708f33f4531b33c212c60c3cc1fc3d3a92b5ae1 (diff) |
grc-refactor: fix fg load
Diffstat (limited to 'grc/core')
-rw-r--r-- | grc/core/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index af6d35f7fb..a6c1a0087f 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -436,7 +436,7 @@ class FlowGraph(Element): if not key.isdigit() and port.get_type() == '' and key == port.get_name(): break else: - if block.is_dummy_block(): + if block.is_dummy_block: port = _dummy_block_add_port(block, key, dir) else: raise LookupError('%s key %r not in %s block keys' % (dir, key, dir)) |