From 21fe60dd4f1c862c66943c1d75c39023a08478b1 Mon Sep 17 00:00:00 2001 From: Ville Rantanen Date: Fri, 4 Nov 2022 11:51:06 +0200 Subject: [PATCH] lowercase is better for typing with mobile --- flit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flit.py b/flit.py index 8ce51e2..0759168 100755 --- a/flit.py +++ b/flit.py @@ -140,7 +140,7 @@ def random_char(): str: A single uppercase letter or number """ - return random.choice(string.ascii_uppercase + string.digits) + return random.choice(string.ascii_lowercase + string.digits) def random_name():