diff --git a/pv2/importer/operation.py b/pv2/importer/operation.py index 3a4fc12..cf7c206 100644 --- a/pv2/importer/operation.py +++ b/pv2/importer/operation.py @@ -815,7 +815,7 @@ class GitImport(Import): # Check that the spec file really has %autochangelog AUTOCHANGELOG = False for line in source_git_repo_spec: - if re.search('^%autochangelog', line): + if re.search(r'^%autochangelog', line): print('autochangelog found') AUTOCHANGELOG = True # It was easier to do this then reimplement logic