rename ICap to Cap (closes #1424)

This commit is contained in:
Romain Bignon 2014-07-05 17:33:44 +02:00
commit e025fb0b20
244 changed files with 679 additions and 679 deletions

View file

@ -19,8 +19,8 @@
from weboob.tools.backend import BaseBackend, BackendConfig
from weboob.capabilities.collection import ICapCollection
from weboob.capabilities.messages import ICapMessages, Message, Thread
from weboob.capabilities.collection import CapCollection
from weboob.capabilities.messages import CapMessages, Message, Thread
from weboob.tools.value import Value, ValueBackendPassword
from .browser import FeedlyBrowser
@ -29,7 +29,7 @@ from .google import GoogleBrowser
__all__ = ['FeedlyBackend']
class FeedlyBackend(BaseBackend, ICapMessages, ICapCollection):
class FeedlyBackend(BaseBackend, CapMessages, CapCollection):
NAME = 'feedly'
DESCRIPTION = u'handle the popular RSS reading service Feedly'
MAINTAINER = u'Bezleputh'