diff options
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,7 +187,7 @@ Factory._prepare method:: @classmethod def _prepare(cls, create, **kwargs): password = kwargs.pop('password', None) - user = super(UserFactory, cls)._prepare(create, kwargs) + user = super(UserFactory, cls)._prepare(create, **kwargs) if password: user.set_password(user) if create: |