diff options
Diffstat (limited to 'meta/lib/oe/patch.py')
-rw-r--r-- | meta/lib/oe/patch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index e0f0604251..07a40fc50e 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py | |||
@@ -334,8 +334,8 @@ class GitApplyTree(PatchTree): | |||
334 | @staticmethod | 334 | @staticmethod |
335 | def interpretPatchHeader(headerlines): | 335 | def interpretPatchHeader(headerlines): |
336 | import re | 336 | import re |
337 | author_re = re.compile('[\S ]+ <\S+@\S+\.\S+>') | 337 | author_re = re.compile(r'[\S ]+ <\S+@\S+\.\S+>') |
338 | from_commit_re = re.compile('^From [a-z0-9]{40} .*') | 338 | from_commit_re = re.compile(r'^From [a-z0-9]{40} .*') |
339 | outlines = [] | 339 | outlines = [] |
340 | author = None | 340 | author = None |
341 | date = None | 341 | date = None |