diff options
author | Conley Owens <cco3@android.com> | 2012-10-09 14:29:46 -0700 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2012-10-09 14:29:46 -0700 |
commit | 3a6cd4200e42fbb5a21b3fb8d3c9738c0320cc63 (patch) | |
tree | 68ae5094d6530453887fb35a73fd5fa55f55a034 /subcmds/start.py | |
parent | 25f17682ca4ecd8acc887462d4bebc7c429cf110 (diff) | |
parent | 8a68ff96057ec58e524a3e41a2d8dca7b5d016bc (diff) | |
download | git-repo-3a6cd4200e42fbb5a21b3fb8d3c9738c0320cc63.tar.gz |
Merge "Coding style cleanup"
Diffstat (limited to 'subcmds/start.py')
-rw-r--r-- | subcmds/start.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subcmds/start.py b/subcmds/start.py index 00885076..be645314 100644 --- a/subcmds/start.py +++ b/subcmds/start.py | |||
@@ -52,10 +52,10 @@ revision specified in the manifest. | |||
52 | print >>sys.stderr, "error: at least one project must be specified" | 52 | print >>sys.stderr, "error: at least one project must be specified" |
53 | sys.exit(1) | 53 | sys.exit(1) |
54 | 54 | ||
55 | all = self.GetProjects(projects) | 55 | all_projects = self.GetProjects(projects) |
56 | 56 | ||
57 | pm = Progress('Starting %s' % nb, len(all)) | 57 | pm = Progress('Starting %s' % nb, len(all_projects)) |
58 | for project in all: | 58 | for project in all_projects: |
59 | pm.update() | 59 | pm.update() |
60 | # If the current revision is a specific SHA1 then we can't push back | 60 | # If the current revision is a specific SHA1 then we can't push back |
61 | # to it so substitute the manifest default revision instead. | 61 | # to it so substitute the manifest default revision instead. |