From 75d320b872f66b366cdb05729bf20af7192e7d97 Mon Sep 17 00:00:00 2001 From: Amit Sethi Date: Wed, 3 Nov 2010 00:13:52 +0530 Subject: Handling the 500's for urls --- project/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'project/urls.py') diff --git a/project/urls.py b/project/urls.py index 599ec56..ab2dc87 100644 --- a/project/urls.py +++ b/project/urls.py @@ -9,8 +9,8 @@ from django.views.generic.simple import redirect_to admin.autodiscover() -PROGRAM_PATTERN_CORE = r'[a-z](?:[0-9a-z]|_[0-9a-z])*' -EVENT_PATTERN_CORE =r'(?:[0-9a-z]|_[0-9a-z])*' +PROGRAM_PATTERN_CORE = r'scipyin' +EVENT_PATTERN_CORE =r'2010' SCOPE_ARG_PATTERN = r'(?P%s/%s)' % ( PROGRAM_PATTERN_CORE, EVENT_PATTERN_CORE) -- cgit