##// END OF EJS Templates
convert: for git's getchanges, use explicit index for iteration...
Siddharth Agarwal -
r22467:333d6547 default
parent child Browse files
Show More
@@ -190,7 +190,12 b' class convert_git(converter_source):'
190 entry = None
190 entry = None
191 subexists = False
191 subexists = False
192 subdeleted = False
192 subdeleted = False
193 for l in fh.read().split('\x00'):
193 difftree = fh.read().split('\x00')
194 lcount = len(difftree)
195 i = 0
196 while i < lcount:
197 l = difftree[i]
198 i += 1
194 if not entry:
199 if not entry:
195 if not l.startswith(':'):
200 if not l.startswith(':'):
196 continue
201 continue
General Comments 0
You need to be logged in to leave comments. Login now