s/Backend/Module

This commit is contained in:
Florent 2014-09-22 17:50:46 +02:00
commit 9370b2fae7
344 changed files with 720 additions and 720 deletions

View file

@ -17,6 +17,6 @@
# You should have received a copy of the GNU Affero General Public License
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from .backend import SevenFiftyGramsBackend
from .backend import SevenFiftyGramsModule
__all__ = ['SevenFiftyGramsBackend']
__all__ = ['SevenFiftyGramsModule']

View file

@ -27,10 +27,10 @@ import unicodedata
def strip_accents(s):
return ''.join(c for c in unicodedata.normalize('NFD', s) if unicodedata.category(c) != 'Mn')
__all__ = ['SevenFiftyGramsBackend']
__all__ = ['SevenFiftyGramsModule']
class SevenFiftyGramsBackend(BaseModule, CapRecipe):
class SevenFiftyGramsModule(BaseModule, CapRecipe):
NAME = '750g'
MAINTAINER = u'Julien Veyssier'
EMAIL = 'julien.veyssier@aiur.fr'