diff options
author | 2025-10-13 02:39:41 -0400 | |
---|---|---|
committer | 2025-10-13 02:39:41 -0400 | |
commit | 50ec11dfb76c4044f379a6682fb9b29165354ef4 (patch) | |
tree | d6c00938e206425aaaf30bc3f15f73fd159afbca | |
parent | Update 3.13t to 3.14t (diff) |
Fix unbound error for code snippet fetch errors
closes GH-3404
-rw-r--r-- | bot/exts/info/code_snippets.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/info/code_snippets.py b/bot/exts/info/code_snippets.py index eba15e825..6f67eda3c 100644 --- a/bot/exts/info/code_snippets.py +++ b/bot/exts/info/code_snippets.py @@ -281,6 +281,7 @@ class CodeSnippets(Cog): f"Failed to fetch code snippet from {match[0]!r}: {error.status} " f"{error_message} for GET {error.request_info.real_url.human_repr()}" ) + continue if isinstance(result, list): # The handler returned multiple snippets (currently only possible with our pastebin) |