diff options
Diffstat (limited to 'stapp/video/urls.py')
-rw-r--r-- | stapp/video/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stapp/video/urls.py b/stapp/video/urls.py index 243a5e8..e45cb7c 100644 --- a/stapp/video/urls.py +++ b/stapp/video/urls.py @@ -1,7 +1,7 @@ from django.conf.urls.defaults import patterns, include, url urlpatterns = patterns('video.views', - url(r'^view/$', 'show'), + url(r'^$', 'show'), url(r'^view/(?P<video_id>\d+)/$', 'show'), ) |