diff --git a/lms/urls.py b/lms/urls.py index 8245a42f04..4c74b90534 100644 --- a/lms/urls.py +++ b/lms/urls.py @@ -208,7 +208,7 @@ if settings.COURSEWARE_ENABLED: ) urlpatterns += ( # This MUST be the last view in the courseware--it's a catch-all for custom tabs. - url(r'^courses/(?P[^/]+/[^/]+/[^/]+)/(?P.*)$', + url(r'^courses/(?P[^/]+/[^/]+/[^/]+)/(?P[^/]+)/$', 'courseware.views.static_tab', name="static_tab"), )