From 79e8013455dc65a2853609e8fc21a87477dc127f Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Thu, 3 May 2012 18:47:01 +0000 Subject: [PATCH] s/WG/group/ in acronym clash error. - Legacy-Id: 4373 --- ietf/wginfo/edit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/wginfo/edit.py b/ietf/wginfo/edit.py index 4a2ca1974..d27194708 100644 --- a/ietf/wginfo/edit.py +++ b/ietf/wginfo/edit.py @@ -49,9 +49,9 @@ class WGForm(forms.Form): raise forms.ValidationError("Acronym is invalid, may only contain letters, numbers and dashes.") if acronym != self.cur_acronym: if Group.objects.filter(acronym__iexact=acronym): - raise forms.ValidationError("Acronym used in an existing WG. Please pick another.") + raise forms.ValidationError("Acronym used in an existing group. Please pick another.") if GroupHistory.objects.filter(acronym__iexact=acronym): - raise forms.ValidationError("Acronym used in a previous WG. Please pick another.") + raise forms.ValidationError("Acronym used in a previous group. Please pick another.") return acronym def clean_urls(self):