diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-20 13:45:06 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-29 15:45:07 +0200 |
commit | 89b09aaf80b8210c2ea4b3da712bfcfbb571a60a (patch) | |
tree | 52f6473f4cfd384803dc6a38f686aad0ff1442cd /grc/core/FlowGraph.py | |
parent | 3d322e9ce4083137377fe8798accc91c8dc8bb67 (diff) |
grc: refactor: some more bus ports stuff
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 c626f7b0cd..83ab53a04b 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -495,7 +495,7 @@ class FlowGraph(Element): for blk in self.blocks: doit(blk, blk.sources, blk.get_sources_gui(), 'source') - doit(blk, blk.sinks, blk.get_sinks_gui(), 'sinks') + doit(blk, blk.sinks, blk.get_sinks_gui(), 'sink') def _update_old_message_port_keys(source_key, sink_key, source_block, sink_block): |