mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-21 21:23:08 -05:00
move parenthesis to proper place
This commit is contained in:
parent
66fd8569c8
commit
70ad9466cb
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue