summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool/core/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-utils/python/modtool/core/base.py')
-rw-r--r--gr-utils/python/modtool/core/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/core/base.py b/gr-utils/python/modtool/core/base.py
index b9009f4891..55b6f48076 100644
--- a/gr-utils/python/modtool/core/base.py
+++ b/gr-utils/python/modtool/core/base.py
@@ -198,7 +198,7 @@ class ModTool(object):
for f in files:
if os.path.isfile(f) and f == 'CMakeLists.txt':
with open(f) as filetext:
- if re.search('find_package\(Gnuradio', filetext.read()) is not None:
+ if re.search(r'find_package\(Gnuradio', filetext.read()) is not None:
self.info['version'] = '36' # Might be 37, check that later
has_makefile = True
elif re.search('GR_REGISTER_COMPONENT', filetext.read()) is not None: