diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-04-25 15:52:44 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-04-25 15:52:44 -0700 |
commit | 77679de8aca6a56f617f8a3f35af4a706369d88c (patch) | |
tree | 0bc951092bf3f7f13217ed934c57a837de4a25e7 /grc/core/FlowGraph.py | |
parent | 677995dba3ac2b3c87f65eb1c7d3b021cae37575 (diff) | |
parent | ece754f1716b7378162b54b09b2a88e53e538d12 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'grc/core/FlowGraph.py')
-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 313af3107a..2f33baf8d0 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -587,7 +587,7 @@ def _dummy_block_add_port(block, key, dir): """ This is so ugly... Add a port to a dummy-field block """ port_n = odict({'name': '?', 'key': key, 'type': ''}) port = block.get_parent().get_parent().Port(block=block, n=port_n, dir=dir) - if port.is_source(): + if port.is_source: block.get_sources().append(port) else: block.get_sinks().append(port) |