diff options
-rwxr-xr-x | pp.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -39,6 +39,8 @@ if os.path.exists(args.password): with open(args.password,"r") as f: # Stripping this protects against an innocuous newline in the password file. password = f.read().rstrip('\n') +else: + password = args.password #print(f"using password {password}") if args.list: action = "list" |