X-Git-Url: https://git.mdrn.pl/turniej.git/blobdiff_plain/ca97ba2773578094c143d50e41af2dc2c267e600..574e798cbd5cd6311fe0d5ba857c216939ed71dd:/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: