From: Steven Tobin Date: Mon, 20 Nov 2023 22:38:42 +0000 (+0000) Subject: replace empty string with space in DEFAULT_DELIMITERS X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=4044ab2e92ae5e38a36dc7f16373ada1d9e23f10;p=redacted-XKCD-password-generator.git replace empty string with space in DEFAULT_DELIMITERS --- diff --git a/xkcdpass/xkcd_password.py b/xkcdpass/xkcd_password.py index 70fa112..b8337b2 100755 --- a/xkcdpass/xkcd_password.py +++ b/xkcdpass/xkcd_password.py @@ -62,7 +62,7 @@ if sys.version_info[0] >= 3: DEFAULT_WORDFILE = "eff-long" -DEFAULT_DELIMITERS = ["", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", +DEFAULT_DELIMITERS = [" ", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]