summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhardythe12015-07-06 18:24:06 +0530
committerhardythe12015-07-06 18:24:06 +0530
commitbc6aa5908709fc20d2a881a6782feb57a5ef6c57 (patch)
tree03d1ecbc0495af5bec58dd02db50f2851403f787
parent956fb8a60d2dbc8f05126807d098b17df0b22ddb (diff)
downloadSciPy2015-bc6aa5908709fc20d2a881a6782feb57a5ef6c57.tar.gz
SciPy2015-bc6aa5908709fc20d2a881a6782feb57a5ef6c57.tar.bz2
SciPy2015-bc6aa5908709fc20d2a881a6782feb57a5ef6c57.zip
minor change
-rw-r--r--website/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/urls.py b/website/urls.py
index eeccd6c..d3e2508 100644
--- a/website/urls.py
+++ b/website/urls.py
@@ -3,6 +3,6 @@ from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
url(r'^$', 'website.views.home', name='home'),
- url(r'^cfp/$', 'website.views.cfp', name='cfp'),
- url(r'^submit-cfp/$', 'website.views.submitcfp', name='submitcfp'),
+ url(r'^cfp$', 'website.views.cfp', name='cfp'),
+ url(r'^submit-cfp$', 'website.views.submitcfp', name='submitcfp'),
)