##// END OF EJS Templates
convert: rename local variable
Martin Geisler -
r15124:8542a9c9 default
parent child Browse files
Show More
@@ -501,11 +501,11 b' class svn_source(converter_source):'
501 501 and not p[2].startswith(badroot + '/')]
502 502
503 503 # Tell tag renamings from tag creations
504 remainings = []
504 renamings = []
505 505 for source, sourcerev, dest in pendings:
506 506 tagname = dest.split('/')[-1]
507 507 if source.startswith(srctagspath):
508 remainings.append([source, sourcerev, tagname])
508 renamings.append([source, sourcerev, tagname])
509 509 continue
510 510 if tagname in tags:
511 511 # Keep the latest tag value
@@ -521,7 +521,7 b' class svn_source(converter_source):'
521 521 # but were really created in the tag
522 522 # directory.
523 523 pass
524 pendings = remainings
524 pendings = renamings
525 525 tagspath = srctagspath
526 526 finally:
527 527 stream.close()
General Comments 0
You need to be logged in to leave comments. Login now