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: