We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34d4b5c commit 07dd66eCopy full SHA for 07dd66e
1 file changed
ietf/meeting/views.py
@@ -2214,7 +2214,7 @@ def err(code, text):
2214
sessions = sessions.filter(group__acronym=acronym)
2215
if not sessions.exists():
2216
return err(400, "No sessions found in meeting '%s' for group '%s'" % (number, acronym))
2217
- session_times = [ (s.official_timeslotassignment().timeslot.time, s) for s in sessions ]
+ session_times = [ (s.official_timeslotassignment().timeslot.time, s) for s in sessions if s.official_timeslotassignment() ]
2218
session_times.sort()
2219
item = request.POST.get('item')
2220
if not item.isdigit():
0 commit comments