diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2019-07-16 16:20:40 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-07-17 21:38:17 +0200 |
commit | 716f5ac3151004f7fa0a906d73aaa7030295fb3b (patch) | |
tree | 87a3dca19cde0b480c25e9d623c0dca5cb2b2efc /gr-utils/python | |
parent | 64984004009d900944650be5dfb327150d27dc30 (diff) |
modtool: remove quotes for python hier block template
fixes #2628
Diffstat (limited to 'gr-utils/python')
-rw-r--r-- | gr-utils/python/modtool/templates/templates.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/python/modtool/templates/templates.py b/gr-utils/python/modtool/templates/templates.py index e59bbc9b94..653ad22887 100644 --- a/gr-utils/python/modtool/templates/templates.py +++ b/gr-utils/python/modtool/templates/templates.py @@ -396,8 +396,8 @@ class ${blockname}(${parenttype}): ${parenttype}.__init__(self, % if blocktype == 'hier': "${blockname}", - "gr.io_signature(${inputsig})", # Input signature - "gr.io_signature(${outputsig})") # Output signature + gr.io_signature(${inputsig}), # Input signature + gr.io_signature(${outputsig})) # Output signature # Define blocks and connect them self.connect() |