diff --git a/seahub/group/forms.py b/seahub/group/forms.py
index 4a3c6b1aac..1d6ee80ab6 100644
--- a/seahub/group/forms.py
+++ b/seahub/group/forms.py
@@ -33,7 +33,7 @@ class GroupAddForm(forms.Form):
def clean_group_name(self):
group_name = self.cleaned_data['group_name']
if not validate_group_name(group_name):
- error_msg = _(u'Group name can only contain letters, numbers or underline')
+ error_msg = _(u'Group name can only contain letters, numbers or underscore')
raise forms.ValidationError(error_msg)
else:
return group_name
diff --git a/seahub/templates/base.html b/seahub/templates/base.html
index 043a0ea1a1..6690e5fba2 100644
--- a/seahub/templates/base.html
+++ b/seahub/templates/base.html
@@ -149,7 +149,7 @@
-