diff options
author | B. Stack <bgstack15@gmail.com> | 2022-07-15 13:49:28 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-07-15 13:49:28 -0400 |
commit | 3748ab934b469f1b0898eff217a405106487935a (patch) | |
tree | 31062d89935f37263dfd34a19eb52ef1d7e2bfdc | |
parent | initial commit (diff) | |
download | photoprismpull-master.tar.gz photoprismpull-master.tar.bz2 photoprismpull-master.zip |
-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" |