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 2817d84 commit 983b0d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,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 983b0d9

Please sign in to comment.