Skip to content

Commit

Permalink
fix #316
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvladus committed Jun 18, 2024
1 parent 9a23e2d commit f3cb860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errands/widgets/shared/datetime_picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def datetime(self, dt: str) -> str:
self.hours.set_value(0)
self.minutes.set_value(0)
else:
dt = datetime.datetime.fromisoformat(dt).strftime("%Y%m%dT%H%M")
dt = datetime.datetime.fromisoformat(dt).strftime("%Y%m%dT%H%M%S")
self.hours.set_value(int(dt[9:11]))
self.minutes.set_value(int(dt[11:13]))
self.calendar.select_day(
Expand Down

0 comments on commit f3cb860

Please sign in to comment.