[allocine] fix : accents were causing problems in search
This commit is contained in:
parent
bd7891f202
commit
74a26bf9b4
1 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ class AllocineBrowser(Browser):
|
|||
|
||||
def iter_movies(self, pattern):
|
||||
params = [('partner', self.PARTNER_KEY),
|
||||
('q', pattern.encode('utf-8')),
|
||||
('q', pattern),
|
||||
('format', 'json'),
|
||||
('filter', 'movie')]
|
||||
|
||||
|
|
@ -92,7 +92,7 @@ class AllocineBrowser(Browser):
|
|||
|
||||
def iter_persons(self, pattern):
|
||||
params = [('partner', self.PARTNER_KEY),
|
||||
('q', pattern.encode('utf-8')),
|
||||
('q', pattern),
|
||||
('format', 'json'),
|
||||
('filter', 'person')]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue