Skip to content

Commit 608a199

Browse files
authored
Merge pull request #65 from djangocon/fix-layout-tues-wed-reg
📆 Update registration closing to avoid layout conflict
2 parents 298335e + ea37de8 commit 608a199

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/_content/schedule/manual.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
start_datetime: 2025-09-09 08:00:00-05:00
6565
title: Continental Breakfast
6666
track: t0
67-
- end_datetime: 2025-09-09 17:30:00-05:00
67+
- end_datetime: 2025-09-09 17:00:00-05:00
6868
permalink: null
6969
room: In front of Room A
7070
start_datetime: 2025-09-09 08:00:00-05:00
@@ -118,7 +118,7 @@
118118
start_datetime: 2025-09-10 08:00:00-05:00
119119
title: Continental Breakfast
120120
track: t0
121-
- end_datetime: 2025-09-10 17:30:00-05:00
121+
- end_datetime: 2025-09-10 17:00:00-05:00
122122
permalink: null
123123
room: In front of Room A
124124
start_datetime: 2025-09-10 08:00:00-05:00

tools/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def migrate_mastodon_handle(*, handle: str) -> str:
407407
),
408408
end_datetime=pydatetime.datetime.combine(
409409
constants.TALK_DAY_2,
410-
pydatetime.time(17, 30),
410+
pydatetime.time(17),
411411
tzinfo=constants.CONFERENCE_TZ,
412412
),
413413
group="break",
@@ -565,7 +565,7 @@ def migrate_mastodon_handle(*, handle: str) -> str:
565565
),
566566
end_datetime=pydatetime.datetime.combine(
567567
constants.TALK_DAY_3,
568-
pydatetime.time(17, 30),
568+
pydatetime.time(17),
569569
tzinfo=constants.CONFERENCE_TZ,
570570
),
571571
group="break",

0 commit comments

Comments
 (0)