diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index c90c48c..b0c6f1f 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -291,7 +291,7 @@ class Plugin(object): def createNzbName(self, data, movie): tag = self.cpTag(movie) - return '%s%s' % (toSafeString(data.get('name')[:127 - len(tag)]), tag) + return '%s%s' % (toSafeString(toUnicode(data.get('name'))[:127 - len(tag)]), tag) def createFileName(self, data, filedata, movie): name = os.path.join(self.createNzbName(data, movie))