Show More
@@ -21,7 +21,7 | |||
|
21 | 21 | # interrupted and can be run repeatedly to copy new commits. |
|
22 | 22 | |
|
23 | 23 | import sys, os, zlib, sha |
|
24 | from mercurial import hg, ui | |
|
24 | from mercurial import hg, ui, util | |
|
25 | 25 | |
|
26 | 26 | class convert_git: |
|
27 | 27 | def __init__(self, path): |
@@ -91,7 +91,7 class convert_mercurial: | |||
|
91 | 91 | |
|
92 | 92 | def putfile(self, f, e, data): |
|
93 | 93 | self.repo.wfile(f, "w").write(data) |
|
94 |
|
|
|
94 | util.set_exec(self.repo.wjoin(f), e) | |
|
95 | 95 | |
|
96 | 96 | def delfile(self, f): |
|
97 | 97 | try: |
General Comments 0
You need to be logged in to leave comments.
Login now