Bläddra i källkod

Split content type correctly.

tags/v0.2
Ben Kurtovic 10 år sedan
förälder
incheckning
ea14f39e73
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 1
- 1
earwigbot/wiki/copyvios/__init__.py Visa fil

@@ -82,7 +82,7 @@ class CopyvioMixIn(object):
return None

ctype_full = response.headers.get("Content-Type", "text/plain")
ctype = ctype_full.split(" ", 1)[0]
ctype = ctype_full.split("; ", 1)[0]
if ctype in ["text/html", "application/xhtml+xml"]:
return HTMLTextParser(result).strip()
elif ctype == "text/plain":


Laddar…
Avbryt
Spara