a3d136e365
Removed unused imports founded by: find . -type f -name "*py" -exec pylint -r n {} \; | grep -E "Unused imp|^\*" Change-Id: I84f81ed833f6f792c5beb41a4d6b26cbb3236b2b
8 lines
173 B
Python
8 lines
173 B
Python
from django.conf.urls import patterns
|
|
|
|
from openstack_dashboard.urls import urlpatterns
|
|
|
|
urlpatterns += patterns('',
|
|
(r'^500/$', 'django.views.defaults.server_error')
|
|
)
|