Merge "Change usages of xrange() to range()"

This commit is contained in:
Conley Owens
2012-11-12 17:30:55 -08:00
committed by Gerrit Code Review
4 changed files with 4 additions and 4 deletions

View File

@@ -58,7 +58,7 @@ The '%prog' command stages files to prepare the next commit.
out.header(' %s', 'project')
out.nl()
for i in xrange(0, len(all_projects)):
for i in range(len(all_projects)):
p = all_projects[i]
out.write('%3d: %s', i + 1, p.relpath + '/')
out.nl()