This commit is contained in:
Cayo Puigdefabregas 2024-11-11 18:15:14 +01:00
parent 57deefdcf4
commit 9832cbf5f2

View file

@ -407,7 +407,7 @@ def load_config(config_file="settings.ini"):
else: else:
logger.error(_("Config file '%s' not found. Using default values."), config_file) logger.error(_("Config file '%s' not found. Using default values."), config_file)
path = os.path.join(os.getcwd()) path = os.path.join(os.getcwd())
url, token, device, erase, legacy = None, None, None, None, None url, token, device, erase, legacy, url_wallet, wb_sign_token = None, None, None, None, None, None, None
return { return {
'path': path, 'path': path,
@ -500,6 +500,8 @@ def main():
if url_wallet and wb_sign_token: if url_wallet and wb_sign_token:
snapshot = send_to_sign_credential(snapshot, wb_sign_token, url_wallet) snapshot = send_to_sign_credential(snapshot, wb_sign_token, url_wallet)
else:
snapshot = json.dumps(snapshot)
save_snapshot_in_disk(snapshot, config['path'], snap_uuid) save_snapshot_in_disk(snapshot, config['path'], snap_uuid)