@@ -43,7 +43,7 @@ given timezone to properly handle any transition that might have occurred.
4343 pendulum.set_transition_rule(pendulum.PRE_TRANSITION )
4444
4545 pendulum.create(2013 , 3 , 31 , 2 , 30 , 0 , 0 , ' Europe/Paris' )
46- ' 2013-03-31T02 :30:00+01:00'
46+ ' 2013-03-31T01 :30:00+01:00'
4747 pendulum.create(2013 , 10 , 27 , 2 , 30 , 0 , 0 , ' Europe/Paris' )
4848 ' 2013-10-27T02:30:00+02:00'
4949
@@ -75,7 +75,7 @@ given timezone to properly handle any transition that might have occurred.
7575
7676 dt = Pendulum(2013 , 3 , 31 , 2 , 30 , 0 , 0 , ' Europe/Paris' , fold = 0 )
7777 dt.isoformat()
78- ' 2013-03-31T02 :30:00+01:00'
78+ ' 2013-03-31T01 :30:00+01:00'
7979
8080 dt = Pendulum(2013 , 3 , 31 , 2 , 30 , 0 , 0 , ' Europe/Paris' , fold = 1 )
8181 dt.isoformat()
@@ -94,7 +94,7 @@ Shifting time to transition
9494
9595So, what happens when you add time to a ``Pendulum `` instance and stumble upon
9696a transition time?
97- Well, ``Pendulum ``, provided with the context of the previous instance, will
97+ Well ``Pendulum ``, provided with the context of the previous instance, will
9898adopt the proper behavior and apply the transition accordingly.
9999
100100.. code-block :: python
@@ -161,7 +161,7 @@ when adding and subtracting time around transition times.
161161 # By default, fold is set to 0
162162 dt = paris.convert(dt)
163163 dt.isoformat()
164- ' 2013-03-31T02 :30:00+01:00'
164+ ' 2013-03-31T01 :30:00+01:00'
165165
166166 dt = datetime(2013 , 3 , 31 , 2 , 30 , fold = 1 )
167167 dt = paris.convert(dt)
@@ -229,7 +229,7 @@ when adding and subtracting time around transition times.
229229 dt = datetime(2013 , 3 , 31 , 2 , 30 )
230230 dt = tz.convert(dt, dst_rule = tz.PRE_TRANSITION )
231231 dt.isoformat()
232- ' 2013-03-31T02 :30:00+01:00'
232+ ' 2013-03-31T01 :30:00+01:00'
233233 tz.convert(dt, dst_rule = tz.TRANSITION_ERROR )
234234 # NonExistingTime: The datetime 2013-03-31 02:30:00 does not exist.
235235
0 commit comments