diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-03-06 17:16:49 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-03-06 17:16:49 +0000 |
commit | ce8df807660789acaaa544570ff541ef35c856b0 (patch) | |
tree | 882ab28260fa347f678712af43a6c682f10878c5 /rpkid/rpki/gui/cacheview/urls.py | |
parent | a2f74605412424b632a6738be4db8dc7e71d49f6 (diff) |
fix DeprecationWarning showing up in the apache.log
see #447
svn path=/trunk/; revision=5112
Diffstat (limited to 'rpkid/rpki/gui/cacheview/urls.py')
-rw-r--r-- | rpkid/rpki/gui/cacheview/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/gui/cacheview/urls.py b/rpkid/rpki/gui/cacheview/urls.py index 62dc8d61..49634ed8 100644 --- a/rpkid/rpki/gui/cacheview/urls.py +++ b/rpkid/rpki/gui/cacheview/urls.py @@ -15,7 +15,7 @@ OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. """ -from django.conf.urls.defaults import * +from django.conf.urls import patterns urlpatterns = patterns('', (r'^query$', 'rpki.gui.cacheview.views.query_view'), |