json処理あたりを修正
This commit is contained in:
parent
25f3ae6404
commit
4366aa06ca
1 changed files with 2 additions and 1 deletions
|
@ -88,7 +88,8 @@ def init(**kwargs):
|
||||||
|
|
||||||
if responce.status_code == 200:
|
if responce.status_code == 200:
|
||||||
print("PCの情報が登録されました。")
|
print("PCの情報が登録されました。")
|
||||||
pc_token = str(responce.json["pc_token"])
|
responce_json = responce.json()
|
||||||
|
pc_token = str(responce_json["pc_token"])
|
||||||
client_config["pc_token"] = pc_token
|
client_config["pc_token"] = pc_token
|
||||||
|
|
||||||
master_password = master_password_gen()
|
master_password = master_password_gen()
|
||||||
|
|
Loading…
Reference in a new issue