Skip to content

Commit

Permalink
Merge pull request django-extensions#115 from Christophe31/patch-1
Browse files Browse the repository at this point in the history
Fix TypeError: expected a character buffer object on passwd cmd use.
  • Loading branch information
jezdez committed Jul 5, 2011
2 parents 37a0f08 + d12c493 commit 7b57dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_extensions/management/commands/passwd.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ def handle(self, *args, **options):
u.set_password(p1)
u.save()

return "Password changed successfully for user", u.username
return "Password changed successfully for user " + u.username

0 comments on commit 7b57dcf

Please sign in to comment.