From ce2e4d75c0b27bb2eae538bc8a1ebf97b1dd80cd Mon Sep 17 00:00:00 2001 From: johnhiggs Date: Tue, 30 Jun 2020 15:14:04 -0400 Subject: [PATCH] bugfix to decryption command line helper --- seleniumbase/common/obfuscate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seleniumbase/common/obfuscate.py b/seleniumbase/common/obfuscate.py index 61f98e10bf6..438a8eccfa1 100755 --- a/seleniumbase/common/obfuscate.py +++ b/seleniumbase/common/obfuscate.py @@ -30,7 +30,7 @@ def main(): print("\nInside a test, use the following to decrypt it:\n") time.sleep(0.2) print(" from seleniumbase import encryption") - print(" encryption.decrypt(%s)" % encrypted_password) + print(" encryption.decrypt('%s')" % encrypted_password) time.sleep(0.2) except KeyboardInterrupt: print("\nExiting...\n")