summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool/modtool_makexml.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2014-08-17 14:57:48 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2014-08-17 14:57:48 -0700
commitf5cb6160333ed1eb698a4477439e66a792f4efa2 (patch)
treefbb0894c9227af1f4b668ffdc6accc64e9aa62ff /gr-utils/python/modtool/modtool_makexml.py
parentc84e7f49eb5e948ef5b041e6e56a3b961070b7bd (diff)
parentfd2ec0b1eb5713124161da2934964769290eb2e4 (diff)
Merge branch 'maint'
Diffstat (limited to 'gr-utils/python/modtool/modtool_makexml.py')
-rw-r--r--gr-utils/python/modtool/modtool_makexml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/modtool_makexml.py b/gr-utils/python/modtool/modtool_makexml.py
index 28eabe1b81..82dc9d94d4 100644
--- a/gr-utils/python/modtool/modtool_makexml.py
+++ b/gr-utils/python/modtool/modtool_makexml.py
@@ -137,7 +137,7 @@ class ModToolMakeXML(ModTool):
'std::vector<float>': 'real_vector',
'std::vector<gr_complex>': 'complex_vector',
}
- if p_type in ('int',) and default_v[:2].lower() == '0x':
+ if p_type in ('int',) and default_v is not None and len(default_v) > 1 and default_v[:2].lower() == '0x':
return 'hex'
try:
return translate_dict[p_type]