diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2015-01-13 09:48:44 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2015-01-13 09:48:44 +0100 |
commit | eec52a4d1583ca794a43712dc1809481910640da (patch) | |
tree | 4d33728d93f75c68efb9573d326715e405adc216 | |
parent | 12119dca307a6f79c89f8c55d0b045b08fcd7c38 (diff) |
grc: fix virtual source resolution
-rw-r--r-- | grc/python/flow_graph.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl index d66c2581de..2526f087eb 100644 --- a/grc/python/flow_graph.tmpl +++ b/grc/python/flow_graph.tmpl @@ -211,7 +211,7 @@ gr.io_signaturev($(len($io_sigs)), $(len($io_sigs)), [$(', '.join($size_strs))]) #set global $sink = $con.get_sink() ##resolve virtual sources to the actual sources #if $source.get_parent().is_virtual_source() - #set $source = $source.resolve_virtual_source() + #set global $source = $source.resolve_virtual_source() #end if ##do not generate connections with virtual sinks #if not $sink.get_parent().is_virtual_sink() |