소스 검색

Some servers don't leave a space before the content type parameter list.

tags/v0.2
Ben Kurtovic 10 년 전
부모
커밋
ccb3c022ca
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 1
- 1
earwigbot/wiki/copyvios/__init__.py 파일 보기

@@ -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":


불러오는 중...
취소
저장