From be7cf3c0a661bb7548a74c06911f8846c1d97982 Mon Sep 17 00:00:00 2001 From: Aidan Comer Date: Fri, 1 Jul 2022 21:23:36 +0100 Subject: [PATCH] improved setup regex to recognise valid characters --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8d7f12..f0a22bb 100755 --- a/setup.py +++ b/setup.py @@ -139,7 +139,7 @@ client_sec = handle_input( user = handle_input( "Username > ", False, - r"[_0-9a-zA-Z]+", + r"[-_0-9a-zA-Z]+", "That is not a valid user", 3, 20,