Skip to content

Commit

Permalink
fix admin filter tuple error
Browse files Browse the repository at this point in the history
  • Loading branch information
codersquid committed Jun 10, 2014
1 parent cf5e6c8 commit e4c3fbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions symposion/schedule/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
admin.site.register(
Room,
list_display=("name", "order", "schedule"),
list_filter=("schedule")
list_filter=("schedule",)
)
admin.site.register(
SlotKind,
list_display=("label", "schedule", "presentation"),
list_filter=("presentation")
list_filter=("presentation",)
)
admin.site.register(
Slot,
list_display=("day", "start", "end", "kind"),
list_filter=("kind")
list_filter=("kind",)
)
admin.site.register(
SlotRoom,
Expand Down

0 comments on commit e4c3fbd

Please sign in to comment.