From e5b46abf2ddf6a8bdaecdf2663a755036dfaa873 Mon Sep 17 00:00:00 2001 From: Florent Date: Thu, 15 May 2014 16:06:24 +0200 Subject: [PATCH] Fix conversion warning --- modules/canalplus/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/canalplus/browser.py b/modules/canalplus/browser.py index e24d1b76..db7dbc6c 100644 --- a/modules/canalplus/browser.py +++ b/modules/canalplus/browser.py @@ -74,7 +74,7 @@ class CanalplusBrowser(BaseBrowser): def get_video(self, url, video=None): self.location(url) video = self.page.get_video(video) - video.url = self.read_url(video.url)[self.quality] + video.url = u'%s' % self.read_url(video.url)[self.quality] return video def read_url(self, url):