Browse Source

Fixed #30620 -- Made an example of admin-compliant custom user app pep8 compliant.

Nuno 5 years ago
parent
commit
34a88b21da
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/topics/auth/customizing.txt

+ 3 - 2
docs/topics/auth/customizing.txt

@@ -1162,13 +1162,14 @@ code would be required in the app's ``admin.py`` file::
         add_fieldsets = (
             (None, {
                 'classes': ('wide',),
-                'fields': ('email', 'date_of_birth', 'password1', 'password2')}
-            ),
+                'fields': ('email', 'date_of_birth', 'password1', 'password2'),
+            }),
         )
         search_fields = ('email',)
         ordering = ('email',)
         filter_horizontal = ()
 
+
     # Now register the new UserAdmin...
     admin.site.register(MyUser, UserAdmin)
     # ... and, since we're not using Django's built-in permissions,