summaryrefslogtreecommitdiff
path: root/gr-utils
diff options
context:
space:
mode:
authorJosh Blum2013-04-07 11:26:34 -0700
committerJosh Blum2013-04-07 11:26:34 -0700
commitd99eb362def2c50c3c9b80c63c33f85df2babacb (patch)
tree7712c8e4f45c9642c8e4a8da7352c1bb89f70095 /gr-utils
parent82d7cf75c5c8891d25379e4d60c0f90bad2d57d2 (diff)
parentf1fb6bc5fb0f031e7e4b7f7290290ca6075faf07 (diff)
downloadgnuradio-d99eb362def2c50c3c9b80c63c33f85df2babacb.tar.gz
gnuradio-d99eb362def2c50c3c9b80c63c33f85df2babacb.tar.bz2
gnuradio-d99eb362def2c50c3c9b80c63c33f85df2babacb.zip
Merge branch 'maint' into v3.6.4git_gras_support
Diffstat (limited to 'gr-utils')
-rw-r--r--gr-utils/src/python/modtool/util_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/src/python/modtool/util_functions.py b/gr-utils/src/python/modtool/util_functions.py
index 4ca294ac3..c40dbd73b 100644
--- a/gr-utils/src/python/modtool/util_functions.py
+++ b/gr-utils/src/python/modtool/util_functions.py
@@ -92,7 +92,7 @@ def get_modname():
pass
# OK, there's no gnuradio.project. So, we need to guess.
cmfile = open('CMakeLists.txt', 'r').read()
- regexp = r'(project\s*\(\s*|GR_REGISTER_COMPONENT\(")gr-(?P<modname>[a-zA-Z1-9-_]+)(\s*(CXX)?|" ENABLE)'
+ regexp = r'(project\s*\(\s*|GR_REGISTER_COMPONENT\(")gr-(?P<modname>[a-zA-Z0-9-_]+)(\s*(CXX)?|" ENABLE)'
try:
modname = re.search(regexp, cmfile, flags=re.MULTILINE).group('modname').strip()
if modname in modname_trans.keys():