From fe139f13a5fe9be24893af4c20be55d6d93c469e Mon Sep 17 00:00:00 2001 From: Dave North Date: Wed, 26 Sep 2018 09:16:58 -0400 Subject: [PATCH] Add region to summary message --- src/aws-target-group-cleanup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aws-target-group-cleanup.py b/src/aws-target-group-cleanup.py index a4160b4..217482a 100644 --- a/src/aws-target-group-cleanup.py +++ b/src/aws-target-group-cleanup.py @@ -79,7 +79,7 @@ def main(argv): else: print("DRYRUN,no deletion took place") - print "Complete. Removed " + str(groups_removed_count) + " orphaned target groups with prefix " + prefix + print "Complete. Removed " + str(groups_removed_count) + " orphaned target groups with prefix " + prefix + " in " + str(args.region) if __name__ == "__main__": main(sys.argv[1:])