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

@ -18,7 +18,7 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from .backend import ImgurBackend
from .backend import ImgurModule
__all__ = ['ImgurBackend']
__all__ = ['ImgurModule']

View file

@ -27,7 +27,7 @@ from urllib import urlencode
import re
__all__ = ['ImgurBackend']
__all__ = ['ImgurModule']
class ImgPaste(BasePaste):
@ -43,7 +43,7 @@ class ImgPaste(BasePaste):
return 'http://i.imgur.com/%s.png' % self.id
class ImgurBackend(BaseModule, CapPaste):
class ImgurModule(BaseModule, CapPaste):
NAME = 'imgur'
DESCRIPTION = u'imgur image upload service'
MAINTAINER = u'Vincent A'