Fixing small typo

remotes/origin/enhancement/email-actions
Alejandro Alonso 2014-07-22 10:41:07 +02:00
parent 136eb02cae
commit 4e043762bf
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class UserStoryStatusSerializer(serializers.ModelSerializer):
Check the status name is not duplicated in the project on creation
"""
qs = None
# If the milestone exists:
# If the user story status exists:
if self.object and attrs.get("name", None):
qs = models.UserStoryStatus.objects.filter(project=self.object.project, name=attrs[source])