Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.

Commit

Permalink
Correct some path to have a ready to use app
Browse files Browse the repository at this point in the history
  • Loading branch information
sveetch committed May 2, 2012
1 parent eb021d0 commit bfd8119
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions sveeaccounts/__init__.py
@@ -1 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.1'
4 changes: 2 additions & 2 deletions sveeaccounts/urls.py
Expand Up @@ -21,11 +21,11 @@
# confusing 404.
url(r'^activate/(?P<activation_key>\w+)/$',
activate,
{'backend': 'DjangoSveetchies.accounts.backends.WithCaptchaBackend'},
{'backend': 'sveeaccounts.backends.WithCaptchaBackend'},
name='registration_activate'),
url(r'^register/$',
register,
{'backend': 'DjangoSveetchies.accounts.backends.WithCaptchaBackend'},
{'backend': 'sveeaccounts.backends.WithCaptchaBackend'},
name='registration_register'),
url(r'^register/complete/$',
direct_to_template,
Expand Down

0 comments on commit bfd8119

Please sign in to comment.