Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
doofus-01 committed Jul 27, 2024
1 parent 139eaa0 commit 369258e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/csv2img-exif
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ for root, _, files in os.walk("."):
file = os.path.normpath(os.path.join(root, filename))

if not file in csv_data:
added.append(["NO_DATA", file, "", "", "NEW", "NO_DATA", "NO_DATA"])
added.append(["NEW", file, "", "", "", "NO_DATA", "NO_DATA"])
elif len(csv_data[file]) < 7:
missing_fields.append(csv_data[file])
elif len(csv_data[file]) > 7:
Expand All @@ -125,7 +125,7 @@ for root, _, files in os.walk("."):
file = os.path.normpath(os.path.join(root, filename))

if not file in csv_data:
added.append(["NO_DATA", file, "", "", "NEW", "NO_DATA", "NO_DATA"])
added.append(["NEW", file, "", "", "", "NO_DATA", "NO_DATA"])
elif len(csv_data[file]) < 7:
missing_fields.append(csv_data[file])
elif len(csv_data[file]) > 7:
Expand Down

0 comments on commit 369258e

Please sign in to comment.