osc-staging: drop extraneous space in freeze method call.

This commit is contained in:
Jimmy Berry 2017-02-10 17:05:55 -06:00
parent b37fd2e094
commit 7307b8ec57

View File

@ -260,7 +260,7 @@ def do_staging(self, subcmd, opts, *args):
CheckCommand(api).perform(prj, opts.old)
elif cmd == 'freeze':
for prj in args[1:]:
FreezeCommand(api).perform(api.prj_from_letter(prj), copy_bootstrap = opts.bootstrap )
FreezeCommand(api).perform(api.prj_from_letter(prj), copy_bootstrap = opts.bootstrap)
elif cmd == 'frozenage':
for prj in args[1:]:
print("%s last frozen %0.1f days ago" % (api.prj_from_letter(prj), api.days_since_last_freeze(api.prj_from_letter(prj))))