Rename filenames in boilerplate

This commit is contained in:
Florent 2014-09-26 11:09:35 +02:00
commit 0b58c9a26b
3 changed files with 2 additions and 2 deletions

View file

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