From 4e043762bf90b9b15a522dae2e61df0402499b3c Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 22 Jul 2014 10:41:07 +0200 Subject: [PATCH] Fixing small typo --- taiga/projects/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/projects/serializers.py b/taiga/projects/serializers.py index 4b414446..62a4c8bc 100644 --- a/taiga/projects/serializers.py +++ b/taiga/projects/serializers.py @@ -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])