summaryrefslogtreecommitdiffstats
path: root/subcmds
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds')
-rw-r--r--subcmds/stage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/stage.py b/subcmds/stage.py
index 2ec48069..1ff85880 100644
--- a/subcmds/stage.py
+++ b/subcmds/stage.py
@@ -58,7 +58,7 @@ The '%prog' command stages files to prepare the next commit.
58 out.header(' %s', 'project') 58 out.header(' %s', 'project')
59 out.nl() 59 out.nl()
60 60
61 for i in xrange(0, len(all_projects)): 61 for i in range(len(all_projects)):
62 p = all_projects[i] 62 p = all_projects[i]
63 out.write('%3d: %s', i + 1, p.relpath + '/') 63 out.write('%3d: %s', i + 1, p.relpath + '/')
64 out.nl() 64 out.nl()