summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/Account.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/Account.py')
-rw-r--r--pyload/plugins/Account.py2
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)