Fixed Key saving bug
This commit is contained in:
parent
026b18b396
commit
38226f149a
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ def get_from_server_and_save(
|
||||||
|
|
||||||
if status == True:
|
if status == True:
|
||||||
# extract:
|
# extract:
|
||||||
public_key = public_key_results.get("valid", False)
|
public_key = public_key_results.get("data", False)
|
||||||
|
|
||||||
# save it:
|
# save it:
|
||||||
did_it_save = write_string_to_text_file(public_key, file_path)
|
did_it_save = write_string_to_text_file(public_key, file_path)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue