diff --git a/modules/leboncoin/__init__.py b/modules/leboncoin/__init__.py
index 1746e9bf..de9ba246 100644
--- a/modules/leboncoin/__init__.py
+++ b/modules/leboncoin/__init__.py
@@ -18,7 +18,7 @@
# along with weboob. If not, see .
-from .backend import LeboncoinBackend
+from .module import LeboncoinModule
-__all__ = ['LeboncoinBackend']
+__all__ = ['LeboncoinModule']
diff --git a/modules/leboncoin/backend.py b/modules/leboncoin/module.py
similarity index 94%
rename from modules/leboncoin/backend.py
rename to modules/leboncoin/module.py
index 71b40b94..17fc7b98 100644
--- a/modules/leboncoin/backend.py
+++ b/modules/leboncoin/module.py
@@ -18,16 +18,16 @@
# along with weboob. If not, see .
-from weboob.tools.backend import BaseBackend
+from weboob.tools.backend import Module
from weboob.capabilities.housing import CapHousing, Query, Housing, HousingPhoto
from .browser import LeboncoinBrowser
-__all__ = ['LeboncoinBackend']
+__all__ = ['LeboncoinModule']
-class LeboncoinBackend(BaseBackend, CapHousing):
+class LeboncoinModule(Module, CapHousing):
NAME = 'leboncoin'
DESCRIPTION = u'search house on leboncoin website'
MAINTAINER = u'Bezleputh'
@@ -35,7 +35,7 @@ class LeboncoinBackend(BaseBackend, CapHousing):
LICENSE = 'AGPLv3+'
VERSION = '1.0'
- BROWSER = LeboncoinBrowser
+ MODULE = LeboncoinBrowser
RET = {Query.HOUSE_TYPES.HOUSE: '1',
Query.HOUSE_TYPES.APART: '2',