Remove a retired reference missed in previous refactor

We pulled the application of retired up into util, but didn't delete
this reference to the variable in the tuple.

Change-Id: I190204fbd4d4c0edf5d116937e8240f94432832d
This commit is contained in:
Monty Taylor 2017-09-22 12:01:54 -05:00
parent e8da5932e1
commit 402376d52b
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ def main():
if not os.path.isdir(scratch_dir):
os.makedirs(scratch_dir)
projects = gitorgs[org]
for (name, description, retired) in projects:
for (name, description) in projects:
scratch_repo = "%s.git" % os.path.join(scratch_dir, name)
subprocess.call(['git', 'init', '--bare', scratch_repo])
subprocess.call(['chown', '-R', '%s:%s'