##// END OF EJS Templates
convert: for git's getchanges, always split entry line into components...
Siddharth Agarwal -
r22468:5910184f default
parent child Browse files
Show More
@@ -199,12 +199,11 class convert_git(converter_source):
199 199 if not entry:
200 200 if not l.startswith(':'):
201 201 continue
202 entry = l
202 entry = l.split()
203 203 continue
204 204 f = l
205 205 if f not in seen:
206 206 seen.add(f)
207 entry = entry.split()
208 207 h = entry[3]
209 208 p = (entry[1] == "100755")
210 209 s = (entry[1] == "120000")
General Comments 0
You need to be logged in to leave comments. Login now