mirror of
https://github.com/jazzband/django-authority.git
synced 2026-03-19 07:30:30 +00:00
Got the following error when installing django-authority:
File "/path/to/env/build/django-authority/example/users/admin.py", line 2
from example.users.User
^
SyntaxError: invalid syntax
5 lines
125 B
Python
5 lines
125 B
Python
from django.contrib.auth.admin import UserAdmin
|
|
from example.users.models import User
|
|
|
|
|
|
admin.site.register(User, UserAdmin)
|