Changeset - ddfa3a4fbdf8
[Not reviewed]
0 1 0
Christopher Neugebauer - 6 years ago 2017-11-18 00:26:41
chrisjrn@gmail.com
fixes an oops
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/monkey_patch.py
Show inline comments
...
 
@@ -50,13 +50,13 @@ def patch_conference_schedule():
 
            presentation = slot.content
 
            if presentation is not None:
 
                update_presentation(request, slot_data, presentation)
 
            elif slot.kind.label.lower() == "keynote":
 
                update_keynote(request, slot_data)
 
            elif slot.kind.label.lower() == "housekeeping":
 
                update_keynote(request, slot_data)
 
                update_housekeeping(request, slot_data)
 
            else:
 
                pass
 

	
 
        return schedule
 

	
 
    def update_presentation(request, slot_data, presentation):
0 comments (0 inline, 0 general)