From fee4bcb24d457d29a60ef2a9a5014b6b7948d58f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Sun, 2 Sep 2018 16:10:41 +0200 Subject: [PATCH] Remove whitelisted space as it is no longer necessary --- cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli.py b/cli.py index cb23b9b..d02724e 100755 --- a/cli.py +++ b/cli.py @@ -47,8 +47,8 @@ if __name__ == '__main__': if args.separator in args.disallow: sys.exit('Disallowing your chosen separator makes no sense!') - # declare special characters that will not be removed (spaces are handled elsewhere) - whitelist = {' ', '.', '-'} + # declare special characters that will not be removed + whitelist = {'.', '-'} if args.whitelist: whitelist = set(args.whitelist.split())