Skip to content

Commit b902276

Browse files
committed
minor edit to comment
- Legacy-Id: 5418
1 parent 05c35e0 commit b902276

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

v4.41/ietf/meeting/views.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,13 @@ def get_plenary_agenda(meeting_num, id):
9090

9191
class NamedTimeSlot(object):
9292
"""
93-
this encapsulates a TimeSlot with a named agenda, so that
93+
this encapsulates a TimeSlot with a Schedule, so that
9494
specific time slots can be returned as appropriate. It proxies
9595
most things to TimeSlot. Agenda_info returns an array of these
9696
objects rather than actual Time Slots, as the templates do not
97-
permit multiple parameters to be passed into a relation
97+
permit multiple parameters to be passed into a relation.
98+
This may be irrelevant with Django 1.3+, given with argument extension
99+
to templating language.
98100
"""
99101
def __init__(self, agenda, timeslot):
100102
self.agenda = agenda
@@ -169,7 +171,7 @@ def scheduledsessions_by_area(self):
169171
def get_ntimeslots_from_ss(agenda, scheduledsessions):
170172
ntimeslots = []
171173
time_seen = set()
172-
174+
173175
for ss in scheduledsessions:
174176
t = ss.timeslot
175177
if not t.time in time_seen:

0 commit comments

Comments
 (0)