Print one tarball per line

Printing out a python like list is hard to process for tests
Better to print out one tarball per line
This commit is contained in:
Elijah DeLee 2020-09-14 16:57:59 -04:00
parent 1a581a79ea
commit d8e4ac773b

View File

@ -52,7 +52,8 @@ class Command(BaseCommand):
return
tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until)
if tgzfiles:
self.logger.debug(tgzfiles)
for tgz in tgzfiles:
self.logger.debug(tgz)
else:
self.logger.error('No analytics collected')
if opt_ship: