summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-08-13 14:18:25 +0200
committerMartin Braun <martin.braun@ettus.com>2014-08-13 14:18:25 +0200
commit5e18f0a1c83dc4d039eb976da2ae846bd3ce6a28 (patch)
treecc0c5b9d8ae69294def3def5d9a41a782cb6c9dd /gr-utils/python/modtool
parent3d5df0ddd3aa8d5a94285b95f487747f25d4ee06 (diff)
modtool: Fixed a bug in makexml for int-type io signatures
Diffstat (limited to 'gr-utils/python/modtool')
-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]