diff options
Diffstat (limited to 'apps/patchwork/models.py')
-rw-r--r-- | apps/patchwork/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/patchwork/models.py b/apps/patchwork/models.py index 11457d7..fb2ccc7 100644 --- a/apps/patchwork/models.py +++ b/apps/patchwork/models.py @@ -122,7 +122,7 @@ class UserProfile(models.Model): person.save() else: for person in people: - person.user = self.user + person.link_to_user(self.user) person.save() def __str__(self): |