Skip to content

Commit

Permalink
fixed my error
Browse files Browse the repository at this point in the history
replaced django.conf.urls with django.core.urlresolvers.
  • Loading branch information
stop5 committed Sep 25, 2017
1 parent f883b64 commit ad2cc24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sitetree/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
try:
from django.urls import get_urlconf, get_resolver
except ImportError:
from django.conf.urls import get_urlconf, get_resolver
from django.core.urlresolvers import get_urlconf, get_resolver
from django.utils.translation import ugettext_lazy as _
from django.utils import six
from django.http import HttpResponseRedirect
Expand Down

0 comments on commit ad2cc24

Please sign in to comment.