From 398bd246f5fe3cbe5febb4964d7c4488629d9509 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 13 Mar 2021 11:15:52 +0000 Subject: [PATCH] Remove any newline from password --- epicyon.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/epicyon.py b/epicyon.py index 5e1032a8c..be2f854f6 100644 --- a/epicyon.py +++ b/epicyon.py @@ -1799,6 +1799,8 @@ if args.notifications: print('Specify a password with the --password option') sys.exit() + args.password = args.password.replace('\n', '') + proxyType = None if args.tor or domain.endswith('.onion'): proxyType = 'tor'