Skip to content

Commit

Permalink
Print just date
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon committed Sep 27, 2024
1 parent f81a32b commit 3abfa07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/python/nexus_nei2019_linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def link_file(src_file, tgt_file):
mo = d.month
iwd = d.isoweekday()

print(f"date: {d}, month: {mo}, isoweekday: {iwd}")
print(f"date: {d.strftime('%Y-%m-%d')}, month: {mo}, isoweekday: {iwd}")
src = file_map.get((mo, iwd))
if src is None:
print(f"error: no file found for month {mo}, iwd {iwd}")
Expand Down

0 comments on commit 3abfa07

Please sign in to comment.