Merge branch 'release'

This commit is contained in:
Ben Patterson
2015-05-19 07:33:32 -04:00

View File

@@ -662,6 +662,6 @@ handler500 = 'static_template_view.views.render_500'
# display error page templates, for testing purposes
urlpatterns += (
url(r'404', handler404),
url(r'500', handler500),
url(r'^404$', handler404),
url(r'^500$', handler500),
)