We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694062f commit ed2b861Copy full SHA for ed2b861
src/config.py
@@ -189,7 +189,7 @@ def __init__(self):
189
j = json.load(j)
190
if settings["enable-encryption"] == True:
191
password = subprocess.getoutput(f"cat {CACHE}/.pswd_temp")
192
- os.system(f"zip -9 -P {password} cfg.sd.zip . -r -x 'saving_status'")
+ os.system(f"zip -9 -P '{password}' cfg.sd.zip . -r -x 'saving_status'")
193
print("moving the configuration archive to the user-defined directory")
194
os.system(f"mv ./cfg.sd.zip \"{j['recent_file']}\"")
195
else:
0 commit comments