diff --git a/apiserver/apiserver/api/serializers.py b/apiserver/apiserver/api/serializers.py index d36bb3b..66bf20c 100644 --- a/apiserver/apiserver/api/serializers.py +++ b/apiserver/apiserver/api/serializers.py @@ -781,7 +781,7 @@ class MyLoginSerializer(LoginSerializer): raise ValidationError(dict(username='*server explodes*')) if ' ' in username: - raise ValidationError(dict(username='Username shouldn\'t have spaces.')) + raise ValidationError(dict(username='Username shouldn\'t have spaces. Try "first.last" or "first.middle.last".')) if 'first.last' in username: raise ValidationError(dict(username='Don\'t literally try "first.last", use your own name.'))