python3 compatibility change for range

This commit is contained in:
Martin West
2016-01-12 19:33:12 +01:00
parent 3f34de84ed
commit ffaf53110a

View File

@@ -100,7 +100,7 @@ def main():
name)
room_meeting_copies[r] = room_meeting_copy
meeting_location = solver.IntVar(all_rooms, 'meeting location')
meeting_location = solver.IntVar(list(all_rooms), 'meeting location')
all_people_calendars = {}
all_people_presence = {}