Prevent a race condition between "Replacing text" label and the save dialog, probably...
[redakcja.git] / apps / fileupload / urls.py
1 from django.conf.urls import patterns, url
2 from fileupload.views import UploadView
3
4 urlpatterns = patterns('',
5     url(r'^(?P<path>(?:.*/)?)$', UploadView.as_view(), name='fileupload'),
6 )
7