Move base_backend.py to base_module.py

This commit is contained in:
Florent 2014-09-22 17:37:28 +02:00
commit 5fe0092c2c
2 changed files with 3 additions and 3 deletions

View file

@ -1,18 +0,0 @@
<%inherit file="layout.py"/>
from weboob.tools.backend import BaseModule
from .browser import ${r.classname}Browser
__all__ = ['${r.classname}Backend']
class ${r.classname}Backend(BaseModule):
NAME = '${r.name}'
DESCRIPTION = u'${r.name} website'
MAINTAINER = u'${r.author}'
EMAIL = '${r.email}'
LICENSE = 'AGPLv3+'
VERSION = '${r.version}'
BROWSER = ${r.classname}Browser