caktus / django-sticky-uploads

Enhanced file input widget for Django which uploads the file in the background and retains value on form errors.
BSD 3-Clause "New" or "Revised" License
32 stars 9 forks source link

Support for Django 1.10 #16

Closed diegojromerolopez closed 8 years ago

diegojromerolopez commented 8 years ago

Django 1.9 has deprecated django.conf.urls.patterns module and it will be removed in Django 1.10.

<complete-path>/local/lib/python2.7/site-packages/stickyuploads/urls.py:6: 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'^default/$', UploadView.as_view(), name='sticky-upload-default'),
mlavin commented 8 years ago

Thanks for the report! @benred42 I bet you could knock this out quickly :)