Commit 7d243562 authored by Joshua Miller's avatar Joshua Miller
Browse files

Support reverse() import change

parent d70cba1e
......@@ -2,10 +2,14 @@
Django Storage interface, using the file system backend.
"""
from django.core.files.storage import FileSystemStorage
from django.core.urlresolvers import reverse_lazy
from django.utils.deconstruct import deconstructible
from django.utils.encoding import force_text
try:
from django.urls import reverse_lazy # Added in Django 1.10
except ImportError:
from django.core.urlresolvers import reverse_lazy
from private_storage import appconfig
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment