Skip to content

Commit

Permalink
Bug fix on format
Browse files Browse the repository at this point in the history
  • Loading branch information
fedecalendino committed Jan 2, 2023
1 parent 384f7de commit 7d85087
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7484,7 +7484,7 @@
</dict>
</array>
<key>version</key>
<string>1.9.1</string>
<string>1.9.2</string>
<key>webaddress</key>
<string>https://github.com/fedecalendino/alfred-world-clock</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "World Clock"
version = "1.9.1"
version = "1.9.2"
description = "Check time in multiple timezones."
documentation = "https://github.com/fedecalendino/alfred-world-clock/blob/main/README.md"
homepage = "https://github.com/fedecalendino/alfred-world-clock"
Expand Down
2 changes: 1 addition & 1 deletion src/formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def default(now: datetime) -> str:
return now.strftime("%d %B, %Y (%H%:%M:%S)")
return now.strftime("%H%:%M:%S (%B %d, %Y)")


def iso8601(now: datetime) -> str:
Expand Down

0 comments on commit 7d85087

Please sign in to comment.