This commit is contained in:
Akash
2020-07-24 14:40:25 +05:30
committed by GitHub
parent 614b4cd5c4
commit b952255697

View File

@@ -51,8 +51,7 @@ def _get_response(req):
try:
response = urlopen(req) # nosec
except Exception as e:
exc = WaybackError("Error while retrieving %s" % req.full_ur
)
exc = WaybackError("Error while retrieving %s" % req.full_url)
exc.__cause__ = e
raise exc
return response