mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 03:55:26 +00:00
🐛 Correct Order of Exception Clauses
Resolves PYL-E0701: Bad except clauses order (ValueError is an ancestor class of UnicodeEncodeError)
This commit is contained in:
parent
43b5ce34d2
commit
e9bfcf6eba
@ -248,14 +248,14 @@ class AccountCookiesPlugin(Plugin.Conversation):
|
||||
logger.warning("用户 %s[%s] 获取账号信息发生错误 [%s]%s", user.full_name, user.id, exc.ret_code, exc.original)
|
||||
await message.reply_text("Stoken 无效,请重新绑定。", reply_markup=ReplyKeyboardRemove())
|
||||
return ConversationHandler.END
|
||||
except UnicodeEncodeError:
|
||||
await message.reply_text("Stoken 非法,请重新绑定。", reply_markup=ReplyKeyboardRemove())
|
||||
return ConversationHandler.END
|
||||
except ValueError as e:
|
||||
if "account_id" in str(e):
|
||||
await message.reply_text("account_id 未找到,请检查输入是否有误。")
|
||||
return ConversationHandler.END
|
||||
raise e
|
||||
except UnicodeEncodeError:
|
||||
await message.reply_text("Stoken 非法,请重新绑定。", reply_markup=ReplyKeyboardRemove())
|
||||
return ConversationHandler.END
|
||||
try:
|
||||
if cookies.account_id is None:
|
||||
logger.info("正在尝试获取用户 %s[%s] account_id", user.full_name, user.id)
|
||||
|
Loading…
Reference in New Issue
Block a user