Fix urls.py for django >= 1.6

This commit is contained in:
Tyler Hallada 2014-07-28 18:52:58 -04:00
parent 471c52bec1
commit 8effdbb1e6

View File

@ -1,4 +1,4 @@
from django.conf.urls.defaults import patterns, url
from django.conf.urls import patterns, url, include
urlpatterns = patterns('laundry_app.views',
url(r'^ajax/current/(?P<hall>\d+)/$', 'ajax_get_current', name='get_current_chart'),