From 70ad9466cb471509e858b103cc49b4eba97017d0 Mon Sep 17 00:00:00 2001 From: ohfp <1813007-ohfp@users.noreply.gitlab.com> Date: Wed, 4 Sep 2024 13:28:24 +0200 Subject: [PATCH] move parenthesis to proper place --- patches/bootstrap.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/bootstrap.patch b/patches/bootstrap.patch index edaa5a2..5b91663 100644 --- a/patches/bootstrap.patch +++ b/patches/bootstrap.patch @@ -1,5 +1,5 @@ diff --git a/python/mozversioncontrol/mozversioncontrol/__init__.py b/python/mozversioncontrol/mozversioncontrol/__init__.py -index f9a9b0d6bd1f..c5c437b3f220 100644 +index f9a9b0d6bd1f..f763871f6a29 100644 --- a/python/mozversioncontrol/mozversioncontrol/__init__.py +++ b/python/mozversioncontrol/mozversioncontrol/__init__.py @@ -1144,7 +1144,7 @@ class SrcRepository(Repository): @@ -7,7 +7,7 @@ index f9a9b0d6bd1f..c5c437b3f220 100644 base = os.path.relpath(root, self.path) for name in files: - res.append(os.path.join(base, name)) -+ res.append(os.path.join(base, name)).replace("\\", "/") ++ res.append(os.path.join(base, name).replace("\\", "/")) return res def get_tracked_files_finder(self, path):