mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-26 08:22:05 +08:00
URLFile: include url in bad status code error
This commit is contained in:
+2
-1
@@ -72,7 +72,8 @@ class URLFile(object):
|
||||
if response_code == 416: # Requested Range Not Satisfiable
|
||||
return ""
|
||||
if response_code != 206 and response_code != 200:
|
||||
raise Exception("Error {}: {}".format(response_code, repr(dats.getvalue())[:500]))
|
||||
raise Exception("Error {} ({}): {}".format(response_code, self._url, repr(dats.getvalue())[:500]))
|
||||
|
||||
|
||||
ret = dats.getvalue()
|
||||
self._pos += len(ret)
|
||||
|
||||
Reference in New Issue
Block a user