From a54fe01e6b7745223247b68387ac0815e9575aec Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sun, 26 Jun 2011 14:16:15 +0200 Subject: [PATCH] id of pages can't be shared between backends --- weboob/applications/webcontentedit/webcontentedit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/applications/webcontentedit/webcontentedit.py b/weboob/applications/webcontentedit/webcontentedit.py index c1665ace..ccd1aa6a 100644 --- a/weboob/applications/webcontentedit/webcontentedit.py +++ b/weboob/applications/webcontentedit/webcontentedit.py @@ -48,7 +48,7 @@ class WebContentEdit(ReplApplication): """ contents = [] for id in line.split(): - _id, backend_name = self.parse_id(id) + _id, backend_name = self.parse_id(id, unique_backend=True) backend_names = (backend_name,) if backend_name is not None else self.enabled_backends contents += [content for backend, content in self.do('get_content', _id, backends=backend_names) if content]