except Exception as e:
Browse files
App/Chat/PoeChatrouter.py
CHANGED
@@ -45,7 +45,8 @@ async def fetch_predictions(data):
|
|
45 |
continue
|
46 |
proxy = str(p)
|
47 |
return await response.json(), response.status
|
48 |
-
except:
|
|
|
49 |
pass
|
50 |
proxy = ""
|
51 |
|
|
|
45 |
continue
|
46 |
proxy = str(p)
|
47 |
return await response.json(), response.status
|
48 |
+
except Exception as e:
|
49 |
+
print(e)
|
50 |
pass
|
51 |
proxy = ""
|
52 |
|