summaryrefslogtreecommitdiff
path: root/gr-utils/python
diff options
context:
space:
mode:
authorBastian Bloessl <mail@bastibl.net>2019-02-22 11:17:05 +0000
committerAndrej Rode <mail@andrejro.de>2019-03-04 11:38:37 +0100
commit3452126400c596ff0f7ca2bf585364a6792f98fc (patch)
tree361e91d18889ae37e41ba8755821ddc76c483864 /gr-utils/python
parentdead238496b112ff5b22bc7f68b978545433f1e1 (diff)
modtool: converter, support mod names w/ underscores
Diffstat (limited to 'gr-utils/python')
-rw-r--r--gr-utils/python/modtool/core/update.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/core/update.py b/gr-utils/python/modtool/core/update.py
index ec8a519d45..c715426638 100644
--- a/gr-utils/python/modtool/core/update.py
+++ b/gr-utils/python/modtool/core/update.py
@@ -31,6 +31,7 @@ import logging
from gnuradio.grc.converter import Converter
from .base import ModTool, ModToolException
+from ..tools import get_modname
logger = logging.getLogger(__name__)
@@ -39,9 +40,10 @@ def get_xml_candidates():
""" Returns a list of XML candidates for update """
xml_candidates = []
xml_files = [x for x in glob.glob1("grc", "*.xml")]
+ mod_name = get_modname()
for candidate in xml_files:
candidate = os.path.splitext(candidate)[0]
- candidate = candidate.split("_", 1)[-1]
+ candidate = candidate.split(mod_name + "_", 1)[-1]
xml_candidates.append(candidate)
return xml_candidates