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'),
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'),