sunshineatnoon/Django-Celery-Example

python3

Dominnio opened this issue · 0 comments

I think project needs two changes to make everything compile with python3:

In file views.py I change
from django.core.urlresolver import reverse
to
from django.urls import reverse

And in file urls.py I change
url(r'^admin/', include(admin.site.urls)),
to
url(r'^admin/', admin.site.urls),

Then I makemigrations, migrate and runserver with pytnon3 not with python.