Procházet zdrojové kódy

Handle errors from UnicodeDamnit.

tags/v0.2
Ben Kurtovic před 10 roky
rodič
revize
901192ec18
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      earwigbot/wiki/copyvios/parsers.py

+ 2
- 1
earwigbot/wiki/copyvios/parsers.py Zobrazit soubor

@@ -223,7 +223,8 @@ class _PlainTextParser(_BaseTextParser):

def parse(self):
"""Unicode-ify and strip whitespace from the plain text document."""
return bs4.UnicodeDammit(self.text).unicode_markup.strip()
converted = bs4.UnicodeDammit(self.text).unicode_markup
return converted.strip() if converted else ""


_CONTENT_TYPES = {


Načítá se…
Zrušit
Uložit