Fixed error in admin.py

Edited the fieldset for ArtistAdmin as a space is accidentally add between monthly_listeners, causing an error when running the server.
parent d53edff8
......@@ -15,7 +15,7 @@ class ArtistAdmin(admin.ModelAdmin):
fieldsets = [
('Artist Information', {
'fields': [
('artist_name','birth_name'), 'monthly_ listeners', 'bio'
('artist_name','birth_name'), 'monthly_listeners', 'bio'
]
})
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment