aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pp.py b/pp.py
index de3cbbe..e12c8cb 100755
--- a/pp.py
+++ b/pp.py
@@ -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"
bgstack15