Skip to content

Commit

Permalink
Use 24 hour time format like civilised people
Browse files Browse the repository at this point in the history
  • Loading branch information
jenskutilek committed May 16, 2024
1 parent f7a7a1d commit a7b2f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Favourites.glyphsPlugin/Contents/Resources/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


def print_time(action: str, timestamp: int) -> None:
t = datetime.fromtimestamp(timestamp).strftime("%I:%M:%S")
t = datetime.fromtimestamp(timestamp).strftime("%H:%M:%S")
print(f"Glyphs {action} at {t}")


Expand Down

0 comments on commit a7b2f3a

Please sign in to comment.