diff --git a/codeforlife/user/models/otp_bypass_token.py b/codeforlife/user/models/otp_bypass_token.py index ac3ee41a..2692a367 100644 --- a/codeforlife/user/models/otp_bypass_token.py +++ b/codeforlife/user/models/otp_bypass_token.py @@ -12,7 +12,7 @@ class OtpBypassToken(models.Model): length = 8 - allowed_chars = "abcdefghijklmnopqrstuv" + allowed_chars = "abcdefghijklmnopqrstuvwxyz" max_count = 10 max_count_validation_error = ValidationError( f"Exceeded max count of {max_count}"