Skip to content

Commit cf09a33

Browse files
committed
fix timezone
1 parent 2330d3a commit cf09a33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ical_gen.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def create_break(title, start, minutes):
6464
event['location'] = vText('Bad Herrenalb, Germany')
6565
cal.add_component(event)
6666

67-
day0 = lambda x: f'2024-07-29T{x}:00'
68-
day1 = lambda x: f'2024-07-30T{x}:00'
69-
day2 = lambda x: f'2024-07-31T{x}:00'
70-
day3 = lambda x: f'2024-08-01T{x}:00'
67+
day0 = lambda x: f'2024-07-29T{x}:00+02:00'
68+
day1 = lambda x: f'2024-07-30T{x}:00+02:00'
69+
day2 = lambda x: f'2024-07-31T{x}:00+02:00'
70+
day3 = lambda x: f'2024-08-01T{x}:00+02:00'
7171

7272
C_SOCIAL = 'blue'
7373
C_BREAK = 'grey'

0 commit comments

Comments
 (0)