diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-09-07 22:29:10 -0300 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-09-07 22:29:10 -0300 |
commit | 60d6b34f676665089b5f24435634be05f1413bac (patch) | |
tree | f3d85d717171c1d0efc545771b68f4f73dabfccc /gr-utils/python/modtool/util_functions.py | |
parent | d09f1c3de676c0a6542fd758c73623b24d9e05ad (diff) |
modtool: fix broken commit d09f1c3d
Diffstat (limited to 'gr-utils/python/modtool/util_functions.py')
-rw-r--r-- | gr-utils/python/modtool/util_functions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-utils/python/modtool/util_functions.py b/gr-utils/python/modtool/util_functions.py index 9e8cf9a854..6de854da88 100644 --- a/gr-utils/python/modtool/util_functions.py +++ b/gr-utils/python/modtool/util_functions.py @@ -87,6 +87,7 @@ def strip_arg_types_grc(string): if len(string) == 0: return "" else: + string = strip_default_values(string) return ", ".join(['$' + part.strip().split(' ')[-1] for part in string.split(',')]) def get_modname(): |