From 563bbd5b0e52095d95adeb308f7a7b47b870cea0 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 29 Oct 2014 01:44:29 +0100 Subject: [PATCH] set filesystem_encoding while creating torrent --- pandora/item/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora/item/models.py b/pandora/item/models.py index 376d7d5d3..532ca92d6 100644 --- a/pandora/item/models.py +++ b/pandora/item/models.py @@ -1228,6 +1228,7 @@ class Item(models.Model): torrent = '%s.torrent' % base url = "http://%s%s" % (settings.CONFIG['site']['url'], url) meta = { + 'filesystem_encoding': 'utf-8', 'target': torrent, 'url-list': url, }