Skip to content

Commit e385c5f

Browse files
author
Claudio Cherubino
committed
Fixed change_password field when creating users in a multidomain environment
1 parent 8466736 commit e385c5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gdata/apps/multidomain/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def __init__(self, uri=None, email=None, first_name=None, last_name=None,
337337
if hash_function:
338338
self.hash_function = hash_function
339339
if change_password is not None:
340-
self.change_password = str(change_password)
340+
self.change_password_at_next_login = str(change_password)
341341
if agreed_to_terms is not None:
342342
self.agreed_to_terms = str(agreed_to_terms)
343343
if suspended is not None:

0 commit comments

Comments
 (0)