devinspector 2.0.3__tar.gz → 2.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {devinspector-2.0.3 → devinspector-2.0.4}/PKG-INFO +1 -1
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector/core.py +5 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector.egg-info/PKG-INFO +1 -1
- {devinspector-2.0.3 → devinspector-2.0.4}/pyproject.toml +1 -1
- {devinspector-2.0.3 → devinspector-2.0.4}/README.md +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector/__init__.py +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector/fastapi.py +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector/flask.py +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector.egg-info/SOURCES.txt +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector.egg-info/dependency_links.txt +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector.egg-info/requires.txt +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/devinspector.egg-info/top_level.txt +0 -0
- {devinspector-2.0.3 → devinspector-2.0.4}/setup.cfg +0 -0
|
@@ -200,6 +200,11 @@ class AuditCore:
|
|
|
200
200
|
try:
|
|
201
201
|
with urllib.request.urlopen(req, timeout=5):
|
|
202
202
|
pass
|
|
203
|
+
except urllib.error.HTTPError as e:
|
|
204
|
+
# Mostra o erro detalhado que o painel devolveu
|
|
205
|
+
error_body = e.read().decode('utf-8', errors='ignore')
|
|
206
|
+
print(f"[DevInspector] HTTP {e.code} do painel: {e.reason} - Resposta: {error_body}")
|
|
207
|
+
print(f"[DevInspector] Payload enviado que gerou o erro: {payload}")
|
|
203
208
|
except Exception as err:
|
|
204
209
|
print(f"[DevInspector] Falha ao enviar requisição para o painel: {err}")
|
|
205
210
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|