소스 검색

MD5 can't handle Unicode, so fully implement saving Unicode objects by fixing that.

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

+ 2
- 1
earwigbot/wiki/page.py 파일 보기

@@ -345,7 +345,8 @@ class Page(CopyvioMixIn):
def _build_edit_params(self, text, summary, minor, bot, force, section,
captcha_id, captcha_word):
"""Given some keyword arguments, build an API edit query string."""
hashed = md5(text).hexdigest() # Checksum to ensure text is correct
unitxt = text.encode("utf8") if isinstance(text, unicode) else text
hashed = md5(unitxt).hexdigest() # Checksum to ensure text is correct
params = {"action": "edit", "title": self._title, "text": text,
"token": self._token, "summary": summary, "md5": hashed}



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