Browse Source

bug-fix
line 273 account_info 被重新赋值

罗俊辉 8 months ago
parent
commit
a958c4802d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      updatePublishedMsgDaily.py

+ 3 - 3
updatePublishedMsgDaily.py

@@ -269,9 +269,9 @@ def update_single_account(db_client, account_info):
     :return:
     """
     gh_id = account_info['ghId']
-    account_info = check_account_info(db_client, gh_id)
-    account_name = account_info['account_name']
-    update_time = account_info['update_time']
+    account_detail = check_account_info(db_client, gh_id)
+    account_name = account_detail['account_name']
+    update_time = account_detail['update_time']
     update_each_account(
         db_client=db_client,
         account_info=account_info,