From d8cb5230ca6f3e16cb265ee54d5b40c61037703f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Schreiner?= Date: Wed, 16 Feb 2011 23:03:47 +0100 Subject: [PATCH] Fix encoding in do_log() --- weboob/applications/webcontentedit/webcontentedit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/weboob/applications/webcontentedit/webcontentedit.py b/weboob/applications/webcontentedit/webcontentedit.py index add3ee86..b2c65298 100644 --- a/weboob/applications/webcontentedit/webcontentedit.py +++ b/weboob/applications/webcontentedit/webcontentedit.py @@ -119,5 +119,6 @@ class WebContentEdit(ReplApplication): _id, backend_name = self.parse_id(id) backend_names = (backend_name,) if backend_name is not None else self.enabled_backends + _id = _id.encode('utf-8') for backend, revision in self.do('iter_revisions', _id): self.format(revision)