Skip to content
This repository was archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:relekang/django-nopassword
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed May 26, 2013
2 parents 29fcc3f + beb6efc commit a4feb2b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ Run this command to install django-nopassword
### Requirements
Django >= 1.4 (1.5 custom user is supported)

South is not required but it is supported.

## Usage
Add the app to installed apps

Expand Down
2 changes: 1 addition & 1 deletion django_nopassword/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def save(self, *args, **kwargs):
super(LoginCode, self).save(*args, **kwargs)
send_mail(
'Login code',
'Login with this url %s%s?next=%s' % (
'Login with this url http://%s%s?next=%s' % (
getattr(settings, 'SERVER_URL', 'example.com'),
reverse('django_nopassword.views.login_with_code', args=[self.user.username, self.code]),
self.next
Expand Down

0 comments on commit a4feb2b

Please sign in to comment.