I'm running my site through its registration paces, and for some reason the registration module is now throwing a syntax error. It appears that after visiting the URL below to activate the account, the view is not completing (i.e. the user record is not showing active)... but when I register the account, the user record in auth_user is being created.
It's working on production; this is the staging site. I could use some help in figuring out where/how to begin tracing this.
Here's the traceback:
Environment:
Request Method: GET
Request URL: http://stg.harmonyschedules.com/accounts/activate/fb2bafc0e4abb978dae35202dee3389f107682f7
Django Version: 1.4
Python Version: 2.7.3
Installed Applications:
('django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'api',
'contact',
'homesite',
'lessons',
'mainsite',
'piston',
'postman',
'registration',
'utils')
Installed Middleware:
('django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware')
Traceback:
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
89. response = middleware_method(request)
File "/usr/local/lib/python2.7/dist-packages/django/middleware/common.py" in process_request
67. if (not urlresolvers.is_valid_path(request.path_info, urlconf) and
File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py" in is_valid_path
531. resolve(path, urlconf)
File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py" in resolve
420. return get_resolver(urlconf).resolve(path)
File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py" in resolve
300. sub_match = pattern.resolve(new_path)
File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py" in resolve
300. sub_match = pattern.resolve(new_path)
File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py" in resolve
295. match = self.regex.search(path)
File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py" in regex
162. compiled_regex = re.compile(self._regex, re.UNICODE)
File "/usr/lib/python2.7/re.py" in compile
190. return _compile(pattern, flags)
File "/usr/lib/python2.7/re.py" in _compile
242. raise error, v # invalid expression
Exception Type: error at /accounts/activate/fb2bafc0e4abb978dae35202dee3389f107682f7
Exception Value: syntax error
urls.py– Abid A Feb 8 at 16:49