Skip to content

Commit

Permalink
Fix date format in documentation quickstart
Browse files Browse the repository at this point in the history
Checked the rest of the docs and did not find any more occurrences.
  • Loading branch information
strobeflash authored and N-Coder committed Jun 5, 2022
1 parent 26634ab commit afb8755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/howtos/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Creating a new Calendar and Add Events
c = Calendar()
e = Event()
e.name = "My cool event"
e.begin = '20140101 00:00:00'
e.begin = '2014-01-01 00:00:00'
c.events.add(e)
c.events
# {<Event 'My cool event' begin:2014-01-01 00:00:00 end:2014-01-01 00:00:01>}
Expand Down

0 comments on commit afb8755

Please sign in to comment.