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

Commit

Permalink
single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ellisonleao committed Jul 18, 2015
1 parent 1812c68 commit 202e6fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quokka/modules/accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def createuser(cls, name, email, password,
*args, **kwargs):

username = username or cls.generate_username(name)
if "links" in kwargs:
kwargs["links"] = [UserLink(**link) for link in kwargs['links']]
if 'links' in kwargs:
kwargs['links'] = [UserLink(**link) for link in kwargs['links']]

return cls.objects.create(
name=name,
Expand Down

0 comments on commit 202e6fd

Please sign in to comment.