summaryrefslogtreecommitdiff
path: root/gr-utils/src/python/modtool/util_functions.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-04-03 00:34:33 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2013-04-03 00:34:33 -0700
commit17fa1031dca6e4a3cc2f90a0599944bba0b4c82c (patch)
tree5b1b671f6533679f8d1b8e30c294ed05b69b4fae /gr-utils/src/python/modtool/util_functions.py
parent4830e8683fffccfe2a2cd97dae6dbc4b965426b7 (diff)
parent0a77df0393de27416d772b5ca7c2807ba4600bed (diff)
Merge branch 'maint'
Diffstat (limited to 'gr-utils/src/python/modtool/util_functions.py')
-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 4ca294ac31..c40dbd73bb 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():