fix typo in masquerade url name

This commit is contained in:
ichuang
2013-04-13 22:14:51 -04:00
parent 1c2452e401
commit fac9d758d8

View File

@@ -345,7 +345,7 @@ if settings.COURSEWARE_ENABLED:
# allow course staff to change to student view of courseware
if settings.MITX_FEATURES.get('ENABLE_MASQUERADE'):
urlpatterns += (
url(r'^masquerade/(?P<marg>.*)$','courseware.masquerade.handle_ajax', name="masquerate-switch"),
url(r'^masquerade/(?P<marg>.*)$','courseware.masquerade.handle_ajax', name="masquerade-switch"),
)