summaryrefslogtreecommitdiff
path: root/qutebrowser/browser/webkit/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/browser/webkit/http.py')
-rw-r--r--qutebrowser/browser/webkit/http.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/qutebrowser/browser/webkit/http.py b/qutebrowser/browser/webkit/http.py
index fed357e62..08a4509eb 100644
--- a/qutebrowser/browser/webkit/http.py
+++ b/qutebrowser/browser/webkit/http.py
@@ -88,10 +88,6 @@ class ContentDisposition:
reg = email.headerregistry.HeaderRegistry()
try:
parsed = reg('Content-Disposition', decoded)
- except IndexError: # pragma: no cover
- # WORKAROUND for https://bugs.python.org/issue37491
- # Fixed in Python 3.7.5 and 3.8.0.
- raise ContentDispositionError("Missing closing quote character")
except ValueError: # pragma: no cover
# WORKAROUND for https://bugs.python.org/issue42946
raise ContentDispositionError("Non-ASCII digit")