953d1b9793
This patch replaces some method imports with module imports and makes H302 test enabled. Fixes bug 1188531 Change-Id: Ibfbddeaa19cbbb244da58ffd5c918c41f03a0c65
8 lines
189 B
Python
8 lines
189 B
Python
from django.conf.urls import patterns # noqa
|
|
|
|
from openstack_dashboard.urls import urlpatterns # noqa
|
|
|
|
urlpatterns += patterns('',
|
|
(r'^500/$', 'django.views.defaults.server_error')
|
|
)
|