From d7f4eb59558da803a228f23b1d620d70b96b3b61 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 3 Jun 2020 22:40:37 +0300 Subject: [PATCH] Minor grammar fix --- platformio/commands/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())