[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 02/05: grc: fix virtual source resolution
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 02/05: grc: fix virtual source resolution |
Date: |
Tue, 13 Jan 2015 20:52:29 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit eec52a4d1583ca794a43712dc1809481910640da
Author: Sebastian Koslowski <address@hidden>
Date: Tue Jan 13 09:48:44 2015 +0100
grc: fix virtual source resolution
---
grc/python/flow_graph.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl
index d66c258..2526f08 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()