Merge pull request #1513 from rtfd/fix-urls-import

Fix "from urls import ..." -> "from readthedocs.urls import ..."
build-pdf-ret-val
Eric Holscher 2015-07-31 08:25:35 -07:00
commit d9d0985eba
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
from django.conf.urls import url, patterns
from readthedocs.projects.constants import LANGUAGES_REGEX
from urls import urlpatterns as main_patterns
from readthedocs.urls import urlpatterns as main_patterns
handler500 = 'readthedocs.core.views.server_error'
handler404 = 'readthedocs.core.views.server_error_404'