diff options
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): |