summaryrefslogtreecommitdiff
path: root/app/birds/admin.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2017-11-09 14:02:16 -0600
committerluxagraf <sng@luxagraf.net>2017-11-09 14:02:16 -0600
commitd42759bdcd6861039835f47153b621545bed334e (patch)
treebcd160b7e9cce9b7933f9fdd0babf901de67c213 /app/birds/admin.py
parentff0316afe40fa8572e787bdc2c5c69fd9c7ace65 (diff)
fixed a couple small bugs
Diffstat (limited to 'app/birds/admin.py')
-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