From d818922afa471706d3d087e45fdfec56c5ac38f0 Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Thu, 13 Feb 2025 19:31:45 -0500 Subject: [PATCH] One final reworking of output format --- bin/nexrad-archive | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/nexrad-archive b/bin/nexrad-archive index 3892213..67f5810 100755 --- a/bin/nexrad-archive +++ b/bin/nexrad-archive @@ -36,13 +36,13 @@ for path in getattr(args, 'csv-report-details'): for key in bucket.each_matching_key(radars, report.timestamp_start, report.timestamp_end): if archive.is_downloaded(key): if not args.quiet: - print(f"{key} event {report.id} already archived") + print(f"event {report.id} key {key} already archived") else: if not args.quiet: if args.dry_run: - print(f"{key} event {report.id} would archive") + print(f"event {report.id} key {key} would archive") else: - print(f"{key} event {report.id} archiving") + print(f"event {report.id} key {key} archiving") if not args.dry_run: archive.download(key)