X-Git-Url: https://git.mdrn.pl/turniej.git/blobdiff_plain/acea41cd89c5d8d9700e0afd7af59d4a5a8b4d2c..7843514955d006b59619b1c7422f1d2c8d6d3124:/apps/poetry/models.py diff --git a/apps/poetry/models.py b/apps/poetry/models.py index b0d15b1..ef8bf94 100644 --- a/apps/poetry/models.py +++ b/apps/poetry/models.py @@ -30,7 +30,7 @@ class Poet(models.Model): stdout=subprocess.PIPE, stderr=subprocess.PIPE) os.chdir(curdir) stdout, stderr = proc.communicate() - text = stdout.decode("utf-8")[:1000] + text = unicode(stdout, "utf-8", errors="ignore")[:1000] slug = get_hash(text) title = '' if self.first_line_title: