diff options
Diffstat (limited to 'pyload/plugins/account/LomafileCom.py')
-rw-r--r-- | pyload/plugins/account/LomafileCom.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/pyload/plugins/account/LomafileCom.py b/pyload/plugins/account/LomafileCom.py index b1faf3bf6..cfd21679c 100644 --- a/pyload/plugins/account/LomafileCom.py +++ b/pyload/plugins/account/LomafileCom.py @@ -1,15 +1,16 @@ # -*- coding: utf-8 -*- -from pyload.plugins.internal.XFSPAccount import XFSPAccount +from module.plugins.internal.XFSAccount import XFSAccount -class LomafileCom(XFSPAccount): - __name__ = "LomafileCom" - __type__ = "account" - __version__ = "0.01" +class LomafileCom(XFSAccount): + __name__ = "LomafileCom" + __type__ = "account" + __version__ = "0.02" __description__ = """Lomafile.com account plugin""" - __authors__ = [("guidobelix", "guidobelix@hotmail.it")] + __license__ = "GPLv3" + __authors__ = [("guidobelix", "guidobelix@hotmail.it")] - HOSTER_URL = "http://www.lomafile.com/" + HOSTER_DOMAIN = "lomafile.com" |