From f4f6f5881c17ecee9610a998fd639c2d1b3a48a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Fri, 17 Apr 2020 16:33:51 +0200 Subject: [PATCH] removed redundant backslashes --- scripts/phabtalk/apply_patch2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/phabtalk/apply_patch2.py b/scripts/phabtalk/apply_patch2.py index 875a8bb..50d26af 100755 --- a/scripts/phabtalk/apply_patch2.py +++ b/scripts/phabtalk/apply_patch2.py @@ -244,7 +244,7 @@ class ApplyPatch: def _get_landed_revisions(self, limit: int = 1000): """Get list of landed revisions from current git branch.""" - diff_regex = re.compile(r'^Differential Revision: https:\/\/reviews\.llvm\.org\/(.*)$', re.MULTILINE) + diff_regex = re.compile(r'^Differential Revision: https://reviews\.llvm\.org/(.*)$', re.MULTILINE) earliest_commit = None rev = self.base_revision if rev is None: