summaryrefslogtreecommitdiff
path: root/app/birds
diff options
context:
space:
mode:
Diffstat (limited to 'app/birds')
-rw-r--r--app/birds/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/birds/admin.py b/app/birds/admin.py
index a8e3a0b..77ebc8a 100644
--- a/app/birds/admin.py
+++ b/app/birds/admin.py
@@ -21,8 +21,8 @@ class BirdAdmin(admin.ModelAdmin):
class GalleryFormPlus(GalleryForm):
def __init__(self, *args, **kwargs):
- self.base_fields['seen_by'].widget = CustomSelectMultiple()
super(GalleryFormPlus, self).__init__(*args, **kwargs)
+ self.base_fields['seen_by'].widget = CustomSelectMultiple()
class Meta:
model = BirdSighting