diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 06:08:01 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 06:08:01 +0200 |
commit | 0e1ef9bc01579328e17e79416fa3c1c7b77adcc8 (patch) | |
tree | 7254ea66d7efee78ececda3ab3eeeb6548b22bca /module/plugins/internal/Account.py | |
parent | Move base plugins to internal folder (diff) | |
download | pyload-0e1ef9bc01579328e17e79416fa3c1c7b77adcc8.tar.xz |
Update everything
Diffstat (limited to 'module/plugins/internal/Account.py')
-rw-r--r-- | module/plugins/internal/Account.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/Account.py b/module/plugins/internal/Account.py index c147404e0..7632d15c2 100644 --- a/module/plugins/internal/Account.py +++ b/module/plugins/internal/Account.py @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>. - + @author: mkaay """ @@ -36,7 +36,7 @@ class Account(Base): associated hoster plugin. Plugin should also provide `loadAccountInfo` """ __name__ = "Account" - __version__ = "0.2" + __version__ = "0.02" __type__ = "account" __description__ = """Account Plugin""" __author_name__ = ("mkaay") @@ -76,7 +76,7 @@ class Account(Base): def _login(self, user, data): # set timestamp for login self.timestamps[user] = time() - + req = self.getAccountRequest(user) try: self.login(user, data, req) |