mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-28 08:04:13 +08:00
GeneratorExit
This commit is contained in:
parent
7afc67749c
commit
87a1e0d789
@ -65,7 +65,8 @@ class TS(basetrans):
|
||||
msg = json_data["result"].replace("\n\n", "\n").strip()
|
||||
yield msg
|
||||
message += msg
|
||||
|
||||
except GeneratorExit:
|
||||
return
|
||||
except:
|
||||
print_exc()
|
||||
raise Exception(response_data)
|
||||
|
@ -384,6 +384,9 @@ class basetrans(commonbase):
|
||||
__callback(res, 0)
|
||||
if all([_ is not None for _ in collectiterres]):
|
||||
self.cachesetatend(contentsolved, "".join(collectiterres))
|
||||
|
||||
except GeneratorExit:
|
||||
pass
|
||||
except Exception as e:
|
||||
if self.using and globalconfig["showtranexception"]:
|
||||
if isinstance(e, ArgsEmptyExc):
|
||||
|
@ -118,6 +118,8 @@ class TS(basetrans):
|
||||
msg = json_data["content_block"]["text"]
|
||||
yield msg
|
||||
message += msg
|
||||
except GeneratorExit:
|
||||
return
|
||||
except:
|
||||
print_exc()
|
||||
raise Exception(response_data)
|
||||
|
@ -155,6 +155,8 @@ class TS(basetrans):
|
||||
elif t == "stream-end":
|
||||
break
|
||||
|
||||
except GeneratorExit:
|
||||
return
|
||||
except:
|
||||
print_exc()
|
||||
raise Exception(response_data)
|
||||
|
@ -96,7 +96,9 @@ class gptcommon(basetrans):
|
||||
continue
|
||||
yield msg
|
||||
message += msg
|
||||
|
||||
|
||||
except GeneratorExit:
|
||||
return
|
||||
except:
|
||||
print_exc()
|
||||
raise Exception(response_data)
|
||||
|
Loading…
x
Reference in New Issue
Block a user