summaryrefslogtreecommitdiffstats
path: root/pyload/threads/AddonThread.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-12-29 21:07:28 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-12-29 21:07:28 +0100
commit8318540e162cccbb049bebebc5aca03384a1e4e9 (patch)
tree5b4dc38520a82b5c8044a026ab996be1d71a782e /pyload/threads/AddonThread.py
parentadded auth to request class (diff)
downloadpyload-8318540e162cccbb049bebebc5aca03384a1e4e9.tar.xz
added progress type enum, new DebugCrypter + Hoster, little improvements for crypter api
Diffstat (limited to 'pyload/threads/AddonThread.py')
-rw-r--r--pyload/threads/AddonThread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/threads/AddonThread.py b/pyload/threads/AddonThread.py
index fd613bdec..d8d84cbfa 100644
--- a/pyload/threads/AddonThread.py
+++ b/pyload/threads/AddonThread.py
@@ -4,7 +4,7 @@
from copy import copy
from traceback import print_exc
-from pyload.Api import ProgressInfo
+from pyload.Api import ProgressInfo, ProgressType
from BaseThread import BaseThread
class AddonThread(BaseThread):
@@ -38,7 +38,7 @@ class AddonThread(BaseThread):
if self.active:
active = self.active[0]
return ProgressInfo(active.pluginname, active.name, active.getStatusName(), 0,
- self.progress, 100)
+ self.progress, 100, self.owner, ProgressType.Addon)
def addActive(self, pyfile):
""" Adds a pyfile to active list and thus will be displayed on overview"""