diff options
author | 2013-12-29 21:07:28 +0100 | |
---|---|---|
committer | 2013-12-29 21:07:28 +0100 | |
commit | 8318540e162cccbb049bebebc5aca03384a1e4e9 (patch) | |
tree | 5b4dc38520a82b5c8044a026ab996be1d71a782e /pyload/plugins/Account.py | |
parent | added auth to request class (diff) | |
download | pyload-8318540e162cccbb049bebebc5aca03384a1e4e9.tar.xz |
added progress type enum, new DebugCrypter + Hoster, little improvements for crypter api
Diffstat (limited to 'pyload/plugins/Account.py')
-rw-r--r-- | pyload/plugins/Account.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyload/plugins/Account.py b/pyload/plugins/Account.py index 4e6f174d2..cbf545611 100644 --- a/pyload/plugins/Account.py +++ b/pyload/plugins/Account.py @@ -45,6 +45,8 @@ class Account(Base): return cls(m, info.loginname, info.owner, True if info.activated else False, True if info.shared else False, password, options) + __type__ = "account" + def __init__(self, manager, loginname, owner, activated, shared, password, options): Base.__init__(self, manager.core, owner) |