You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
#5
Open
agronick opened this issue
Jan 8, 2016
· 0 comments
This is quick fix. It would be great to get it in pip before next year so everyone's site using this module can upgrade and have it not break the site. Instead of using the patterns() method in urls.py just make it a list.
/local/lib/python2.7/site-packages/filemanager/urls.py:12: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
url(r'^create/directory/$', DirectoryCreateView.as_view(), name='create-directory'),
The text was updated successfully, but these errors were encountered:
This is quick fix. It would be great to get it in pip before next year so everyone's site using this module can upgrade and have it not break the site. Instead of using the patterns() method in urls.py just make it a list.
/local/lib/python2.7/site-packages/filemanager/urls.py:12: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
url(r'^create/directory/$', DirectoryCreateView.as_view(), name='create-directory'),
The text was updated successfully, but these errors were encountered: