Skip to content

Commit 0a919d6

Browse files
committed
schedule json: fix trailing comma
1 parent aad88d6 commit 0a919d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/schedule/feeds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def duration_hhmm(duration_minutes):
6767
.all()
6868
)
6969

70-
duration_days = (ceil((event_end() - event_end()).total_seconds / 86400),)
70+
duration_days = ceil((event_end() - event_end()).total_seconds / 86400)
7171

7272
rooms = [proposal.scheduled_venue.name for proposal in schedule]
7373

0 commit comments

Comments
 (0)