Get rid of removed Django code

Change-Id: I8ca0de50784a768d4e9a88c66cef0e0a3720a18b
This commit is contained in:
Jacky Hu 2017-07-26 07:02:42 +08:00 committed by Michael Johnson
parent b3c64e1c68
commit 6b92c6f781
1 changed files with 4 additions and 5 deletions

View File

@ -12,9 +12,8 @@
# under the License.
from django.conf import urls
import openstack_dashboard.urls
from openstack_dashboard import urls as dashboard_urls
urlpatterns = urls.patterns(
'',
urls.url(r'', urls.include(openstack_dashboard.urls))
)
urlpatterns = [
urls.url(r'', urls.include(dashboard_urls))
]