diff options
author | Josh Blum <josh@joshknows.com> | 2012-10-05 11:37:35 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-10-05 11:37:35 -0700 |
commit | 5285039a04436e55c7c90ab01e9dc2d388924312 (patch) | |
tree | f3b992850da41f1326df8a143438d1242987f37e /grc | |
parent | 6fb32f05d01c23e1953fe874a33f37bc44758d9e (diff) |
grc: revert changes to flow_graph.tmpl, runtime enforces this
Diffstat (limited to 'grc')
-rw-r--r-- | grc/python/flow_graph.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl index 57f2a4a45f..17feb01f65 100644 --- a/grc/python/flow_graph.tmpl +++ b/grc/python/flow_graph.tmpl @@ -91,9 +91,9 @@ class $(class_name)(gr.hier_block2): #if len($io_sigs) == 0 gr.io_signature(0, 0, 0)#slurp #elif len($io_sigs) == 1 -gr.io_signature(0, 1, $size_strs[0])#slurp +gr.io_signature(1, 1, $size_strs[0])#slurp #else -gr.io_signaturev(0, $(len($io_sigs)), [$(', '.join($size_strs))])#slurp +gr.io_signaturev($(len($io_sigs)), $(len($io_sigs)), [$(', '.join($size_strs))])#slurp #end if #end def |