Skip to content

Commit

Permalink
i.sentinel.import: replace %-d with %d (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
landam committed Feb 28, 2022
1 parent 99f15f0 commit 63824fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ def write_metadata(self):
continue

timestamp = meta["timestamp"]
timestamp_str = timestamp.strftime("%-d %b %Y %H:%M:%S.%f")
timestamp_str = timestamp.strftime("%d %b %Y %H:%M:%S.%f")
descr_list = []
for dkey in meta.keys():
if dkey != "timestamp":
Expand Down

0 comments on commit 63824fb

Please sign in to comment.