diff --git a/git_config.py b/git_config.py index 6589b193..645c97ab 100644 --- a/git_config.py +++ b/git_config.py @@ -168,7 +168,7 @@ class GitConfig(object): elif old != value: self._cache[key] = list(value) self._do('--replace-all', name, value[0]) - for i in xrange(1, len(value)): + for i in range(1, len(value)): self._do('--add', name, value[i]) elif len(old) != 1 or old[0] != value: diff --git a/main.py b/main.py index 10e1cf8c..14a57618 100755 --- a/main.py +++ b/main.py @@ -87,7 +87,7 @@ class _Repo(object): name = None glob = [] - for i in xrange(0, len(argv)): + for i in range(len(argv)): if not argv[i].startswith('-'): name = argv[i] if i > 0: diff --git a/repo b/repo index 1b809087..80eff8ff 100755 --- a/repo +++ b/repo @@ -606,7 +606,7 @@ def _ParseArguments(args): opt = _Options() arg = [] - for i in xrange(0, len(args)): + for i in range(len(args)): a = args[i] if a == '-h' or a == '--help': opt.help = True 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. 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()