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],