Fixed sample data command

remotes/origin/enhancement/email-actions
David Barragán Merino 2013-10-16 21:59:01 +02:00
parent 6653f93497
commit e3d8259644
1 changed files with 2 additions and 2 deletions

View File

@ -155,10 +155,10 @@ class Command(BaseCommand):
for role_points in us.role_points.all():
if milestone:
role_points.point = self.sd.db_object_from_queryset(
role_points.points = self.sd.db_object_from_queryset(
us.project.points.exclude(value=None))
else:
role_points.point = self.sd.db_object_from_queryset(
role_points.points = self.sd.db_object_from_queryset(
us.project.points.all())
role_points.save()