diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-10-08 21:36:46 -0700 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-10-22 19:06:55 +0200 |
commit | 0eabe211687c511cfc3b2860485b6915f0201be6 (patch) | |
tree | ce8b4e9641e904786d2bbdae3082252bd6449e65 /gr-utils/python/modtool/templates.py | |
parent | 9449236cf7bf48f40b696edce68d81410d713489 (diff) |
modtool: Fix templating syntax error in C++ noblock template for pre-3.7 OOTs
Diffstat (limited to 'gr-utils/python/modtool/templates.py')
-rw-r--r-- | gr-utils/python/modtool/templates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/templates.py b/gr-utils/python/modtool/templates.py index 420b7c63b5..0f6dcb500e 100644 --- a/gr-utils/python/modtool/templates.py +++ b/gr-utils/python/modtool/templates.py @@ -731,7 +731,7 @@ ${str_to_fancyc_comment(license)} #define INCLUDED_${modname.upper()}_${blockname.upper()}_H #include <${modname}_api.h> -% if blocktype == 'noblock' +% if blocktype == 'noblock': class ${modname.upper()}_API ${blockname} { ${blockname}(${arglist}); |