diff options
author | Arpit Gupta <guptarpit1997@gmail.com> | 2019-03-24 19:33:38 +0530 |
---|---|---|
committer | Andrej Rode <mail@andrejro.de> | 2019-03-31 23:21:28 +0200 |
commit | fc58c1f7fcd21432500a24dc220b5f42778dff98 (patch) | |
tree | 49a92ee050fd6fe3a887d921a21faed2fa521855 /gr-utils/python | |
parent | bcb67601eb166acf6a07fd9e1053aab8213d0861 (diff) |
gr_modtool: add missing braces to YAML file make template
Diffstat (limited to 'gr-utils/python')
-rw-r--r-- | gr-utils/python/modtool/tools/util_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/tools/util_functions.py b/gr-utils/python/modtool/tools/util_functions.py index 709c9aeb40..1c34e4d294 100644 --- a/gr-utils/python/modtool/tools/util_functions.py +++ b/gr-utils/python/modtool/tools/util_functions.py @@ -108,7 +108,7 @@ def strip_arg_types_grc(string): return "" else: string = strip_default_values(string) - return ", ".join(['$' + part.strip().split(' ')[-1] for part in string.split(',')]) + return ", ".join(['${' + part.strip().split(' ')[-1] + '}' for part in string.split(',')]) def get_modname(): """ Grep the current module's name from gnuradio.project or CMakeLists.txt """ |