rename ICap to Cap (closes #1424)
This commit is contained in:
parent
51958135cb
commit
e025fb0b20
244 changed files with 679 additions and 679 deletions
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
import re
|
||||
|
||||
from weboob.capabilities.gallery import ICapGallery, BaseGallery, BaseImage
|
||||
from weboob.capabilities.gallery import CapGallery, BaseGallery, BaseImage
|
||||
from weboob.tools.backend import BaseBackend
|
||||
from weboob.tools.browser import BaseBrowser, BasePage
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ class GenericComicReaderBrowser(BaseBrowser):
|
|||
image.data = self.readurl(image.url)
|
||||
|
||||
|
||||
class GenericComicReaderBackend(BaseBackend, ICapGallery):
|
||||
class GenericComicReaderBackend(BaseBackend, CapGallery):
|
||||
NAME = 'genericcomicreader'
|
||||
MAINTAINER = u'Noé Rubinstein'
|
||||
EMAIL = 'noe.rubinstein@gmail.com'
|
||||
|
|
|
|||
|
|
@ -19,13 +19,13 @@
|
|||
|
||||
|
||||
import time
|
||||
from weboob.capabilities.messages import ICapMessages, Message, Thread
|
||||
from weboob.capabilities.messages import CapMessages, Message, Thread
|
||||
from weboob.capabilities.base import find_object
|
||||
from weboob.tools.backend import BaseBackend
|
||||
from weboob.tools.newsfeed import Newsfeed
|
||||
|
||||
|
||||
class GenericNewspaperBackend(BaseBackend, ICapMessages):
|
||||
class GenericNewspaperBackend(BaseBackend, CapMessages):
|
||||
"""
|
||||
GenericNewspaperBackend class
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -20,11 +20,11 @@
|
|||
|
||||
|
||||
|
||||
from weboob.capabilities.paste import ICapPaste
|
||||
from weboob.capabilities.paste import CapPaste
|
||||
import binascii
|
||||
|
||||
|
||||
class BasePasteBackend(ICapPaste):
|
||||
class BasePasteBackend(CapPaste):
|
||||
EXPIRATIONS = {}
|
||||
"""
|
||||
List of expirations and their corresponding remote codes (any type can be used).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue