From 3e5cfcf327d060d2d1b7f182dc833372c919196d Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Sat, 21 Mar 2020 18:36:25 +0100 Subject: [PATCH] Remove obsolete comment. --- rad_tag.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/rad_tag.py b/rad_tag.py index 182dd79..3146bfc 100755 --- a/rad_tag.py +++ b/rad_tag.py @@ -94,13 +94,11 @@ for src_photo in args.photos: # Here the matching magic takes place match = Match(photo.get_date, radiation_list, position_list) - - # Formatted output: - #print(Output(photo.get_target_photo[0], photo.get_date, match.radiation[1], - # match.position[1][1], match.position[1][2], match.position[1][3])) - data = Output(match.radiation[1], match.position[1][1], match.position[1][2], match.position[1][3]) + # Formatted output: + data = Output(match.radiation[1], match.position[1][1], match.position[1][2], match.position[1][3]) print('{:<15} {:<25} {:<22}'.format(photo.get_target_photo[0], str(photo.get_date), str(data))) + #print(match) # Write exif data Exif(photo.get_target_photo[1], args.dry, match.radiation[1],