Remove whitelisted space as it is no longer necessary
This commit is contained in:
parent
e090626b28
commit
fee4bcb24d
4
cli.py
4
cli.py
@ -47,8 +47,8 @@ if __name__ == '__main__':
|
|||||||
if args.separator in args.disallow:
|
if args.separator in args.disallow:
|
||||||
sys.exit('Disallowing your chosen separator makes no sense!')
|
sys.exit('Disallowing your chosen separator makes no sense!')
|
||||||
|
|
||||||
# declare special characters that will not be removed (spaces are handled elsewhere)
|
# declare special characters that will not be removed
|
||||||
whitelist = {' ', '.', '-'}
|
whitelist = {'.', '-'}
|
||||||
if args.whitelist:
|
if args.whitelist:
|
||||||
whitelist = set(args.whitelist.split())
|
whitelist = set(args.whitelist.split())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user