From d8e4ac773b821224271f19c6b9ee51cc2e663cae Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 14 Sep 2020 16:57:59 -0400 Subject: [PATCH] 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 --- awx/main/management/commands/gather_analytics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/main/management/commands/gather_analytics.py b/awx/main/management/commands/gather_analytics.py index 6bfa3b1674..82d304c447 100644 --- a/awx/main/management/commands/gather_analytics.py +++ b/awx/main/management/commands/gather_analytics.py @@ -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: