Changeset - 005c82229e74
[Not reviewed]
0 1 0
Christopher Neugebauer - 6 years ago 2017-11-16 01:32:07
chrisjrn@gmail.com
oops
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/monkey_patch.py
Show inline comments
...
 
@@ -47,13 +47,13 @@ def patch_conference_schedule():
 

	
 
        for slot_data in schedule:
 
            slot = sm.Slot.objects.get(id=slot_data["conf_key"])
 
            presentation = slot.content
 
            if presentation is not None:
 
                update_presentation(request, slot_data, presentation)
 
            elif slot.kind.label == "keynote":
 
            elif slot.kind.label.lower() == "keynote":
 
                update_keynote(request, slot_data)
 
            else:
 
                pass
 

	
 
        return schedule
 

	
0 comments (0 inline, 0 general)