Skip to content

Commit

Permalink
Fix Ulauncher#20: time format should use locale settings, not 12-hour…
Browse files Browse the repository at this point in the history
… format everywhere
  • Loading branch information
brunetton committed Mar 25, 2023
1 parent a269c36 commit e04eb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timer/Timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def stop(self, notify=False):

@property
def description(self):
return f"{self.name} at {self.end_time.strftime('%-I:%M %p')}"
return f"{self.name} at {self.end_time.strftime('%-H:%M %p')}"

@property
def time_since_end(self):
Expand Down

0 comments on commit e04eb4b

Please sign in to comment.