diff --git a/platformio/commands/account.py b/platformio/commands/account.py index 67603224..c254dbee 100644 --- a/platformio/commands/account.py +++ b/platformio/commands/account.py @@ -34,7 +34,7 @@ def validate_username(value, field="username"): if not re.match(r"^[a-z\d](?:[a-z\d]|-(?=[a-z\d])){0,37}$", value, flags=re.I): raise click.BadParameter( "Invalid %s format. " - "%s must only contain alphanumeric characters " + "%s must contain only alphanumeric characters " "or single hyphens, cannot begin or end with a hyphen, " "and must not be longer than 38 characters." % (field.lower(), field.capitalize())