From 222f65d3731abd9faf014ca88363ed234d6995c1 Mon Sep 17 00:00:00 2001 From: Christophe Lampin Date: Mon, 22 Jul 2013 16:11:27 +0200 Subject: [PATCH] fix conversion warning Signed-off-by: Christophe Lampin --- modules/hellobank/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hellobank/browser.py b/modules/hellobank/browser.py index 27fdf01e..a29154a3 100755 --- a/modules/hellobank/browser.py +++ b/modules/hellobank/browser.py @@ -217,7 +217,7 @@ class HelloBank(BaseBrowser): self.form.set_all_readonly(False) self['identifiant'] = page_id if len(thread.id): - self['idMessage'] = thread.id + self['idMessage'] = thread.id.encode('utf-8') # the JS does this, but it makes us unable to read unread messages #if unread: # self['newMsg'] = thread.id