From af7e8278565c75b62fc0ac71c4c201cc6eb2a7a0 Mon Sep 17 00:00:00 2001 From: Florent Date: Tue, 13 Mar 2012 18:15:19 +0100 Subject: [PATCH] Change capability to iter and download document --- weboob/capabilities/bill.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/weboob/capabilities/bill.py b/weboob/capabilities/bill.py index 6cc26fd2..3e81debd 100644 --- a/weboob/capabilities/bill.py +++ b/weboob/capabilities/bill.py @@ -61,9 +61,11 @@ class ICapBill(ICapCollection): def iter_history(self, subscription): raise NotImplementedError() - # XXX : should be an other Cap ? - def get_pdf(self, subscription): + def get_bill(self, subscription, id): raise NotImplementedError() - + + def iter_bill(self, subscription): + raise NotImplementedError() + def get_details(self, subscription): raise NotImplementedError()