返回提交历史
Modified
g4f/Provider/needs_auth/LMArena.py
+1
-1
XFEstudio/gpt4free
fix(provider): replace bare except clause with except Exception in LMArena retry loop
59719afa
代码差异
1 个文件
+1
-1
@@ -724,7 +724,7 @@ class LMArena(AsyncGeneratorProvider, ProviderModelMixin, AuthFileMixin):
724
724
_need_clear_cookies = True
725
725
debug.error(error)
726
726
continue
727
except:
727
except Exception:
728
728
raise
729
729
if args:
730
730
debug.log("Save args to cache file:", str(cache_file))