benoitc 514a0ba0e3 change the way we handle last chunk, on't break but instead test if last
was an empty string. So we allows idiot content to send empty string at
first.
2010-03-19 10:00:15 +01:00

8 lines
167 B
Python

from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('',
url(r'^acsv$', 'testing.views.acsv'),
url(r'^$', 'testing.views.home'),
)