diff options
Diffstat (limited to 'grs/Populate.py')
-rw-r--r-- | grs/Populate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/Populate.py b/grs/Populate.py index a1822ee..3271cb7 100644 --- a/grs/Populate.py +++ b/grs/Populate.py @@ -64,7 +64,7 @@ class Populate(): cycled_files = {} for dirpath, dirnames, filenames in os.walk(self.workdir): for f in filenames: - m = re.search('^(.+)\.CYCLE\.(\d+)', f) + m = re.search(r'^(.+)\.CYCLE\.(\d+)', f) if m: filename = m.group(1) cycle_no = int(m.group(2)) |