diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-04 11:57:50 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-04 11:57:50 +0100 |
commit | 3ff31b5c10b69f687aeb0d4fdd0a79d144cac79b (patch) | |
tree | 362e004891e9189e520e8424f32e78a92ffbe5e4 /module/plugins/Addon.py | |
parent | import fix for py 2.5 (diff) | |
download | pyload-3ff31b5c10b69f687aeb0d4fdd0a79d144cac79b.tar.xz |
removed unneeded stuff
Diffstat (limited to 'module/plugins/Addon.py')
-rw-r--r-- | module/plugins/Addon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/Addon.py b/module/plugins/Addon.py index 60223dd28..8b4430672 100644 --- a/module/plugins/Addon.py +++ b/module/plugins/Addon.py @@ -97,8 +97,8 @@ class Addon(Base): #: periodic call interval in seconds interval = 60 - def __init__(self, core, manager): - Base.__init__(self, core) + def __init__(self, core, manager, user=None): + Base.__init__(self, core, user) #: Provide information in dict here, usable by API `getInfo` self.info = None |