# HG changeset patch # User Martin Geisler # Date 1316434766 -7200 # Node ID 8542a9c9f67997a1faafc385f11a2fcab458772c # Parent 9b41ccb2043e724690018f7cd25645dc5b980d51 convert: rename local variable diff -r 9b41ccb2043e -r 8542a9c9f679 hgext/convert/subversion.py --- a/hgext/convert/subversion.py Sat Sep 17 13:42:11 2011 -0500 +++ b/hgext/convert/subversion.py Mon Sep 19 14:19:26 2011 +0200 @@ -501,11 +501,11 @@ and not p[2].startswith(badroot + '/')] # Tell tag renamings from tag creations - remainings = [] + renamings = [] for source, sourcerev, dest in pendings: tagname = dest.split('/')[-1] if source.startswith(srctagspath): - remainings.append([source, sourcerev, tagname]) + renamings.append([source, sourcerev, tagname]) continue if tagname in tags: # Keep the latest tag value @@ -521,7 +521,7 @@ # but were really created in the tag # directory. pass - pendings = remainings + pendings = renamings tagspath = srctagspath finally: stream.close()