Fixed timezone awareness adder
This commit is contained in:
parent
016d022303
commit
6bda730c61
1 changed files with 5 additions and 5 deletions
|
@ -135,10 +135,10 @@ class CalendarInterface (DataSourceInterface):
|
||||||
until_index = rrule.index("UNTIL")
|
until_index = rrule.index("UNTIL")
|
||||||
|
|
||||||
tz_index = until_index + len(until_template)
|
tz_index = until_index + len(until_template)
|
||||||
if tz_index < 0 or tz_index >= len(rrule):
|
if until_index < 0 or (tz_index < len(rrule) and rrule[tz_index] is "T"):
|
||||||
return rrule
|
return rrule
|
||||||
|
|
||||||
if rrule[tz_index] is "T":
|
if tz_index == len(rrule):
|
||||||
return rrule
|
return rrule + timezone_str
|
||||||
|
else:
|
||||||
return rrule[:tz_index] + timezone_str + rrule[tz_index:]
|
return rrule[:tz_index] + timezone_str + rrule[tz_index:]
|
Loading…
Reference in a new issue