Rename BaseModule to Module and Module to LoadedModule

This commit is contained in:
Florent 2014-09-23 10:16:35 +02:00
commit 5a1d83b567
166 changed files with 359 additions and 359 deletions

View file

@ -19,14 +19,14 @@
from weboob.capabilities.base import NotLoaded
from weboob.tools.backend import BackendConfig, BaseModule
from weboob.tools.backend import BackendConfig, Module
from weboob.tools.capabilities.paste import BasePasteModule
from weboob.tools.value import Value, ValueBackendPassword
from .browser import PastebinBrowser, PastebinPaste
class PastebinModule(BaseModule, BasePasteModule):
class PastebinModule(Module, BasePasteModule):
NAME = 'pastebin'
MAINTAINER = u'Laurent Bachelier'
EMAIL = 'laurent@bachelier.name'