summaryrefslogtreecommitdiffstats
path: root/module/PluginThread.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-14 21:53:48 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-14 21:53:48 +0200
commitd23246547e10382b2244fc34157a2896706ac2c7 (patch)
tree262dbbc1fa59c0ef68f273b356912f6453843777 /module/PluginThread.py
parent[Plugin] Call api faster (diff)
downloadpyload-d23246547e10382b2244fc34157a2896706ac2c7.tar.xz
Stretch comment separator
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r--module/PluginThread.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py
index 2d0a07e77..5e3519674 100644
--- a/module/PluginThread.py
+++ b/module/PluginThread.py
@@ -40,7 +40,7 @@ from Api import OnlineStatus
class PluginThread(Thread):
"""abstract base class for thread types"""
- #----------------------------------------------------------------------
+ #--------------------------------------------------------------------------
def __init__(self, manager):
"""Constructor"""
Thread.__init__(self)
@@ -150,7 +150,7 @@ class PluginThread(Thread):
class DownloadThread(PluginThread):
"""thread for downloading files from 'real' hoster plugins"""
- #----------------------------------------------------------------------
+ #--------------------------------------------------------------------------
def __init__(self, manager):
"""Constructor"""
PluginThread.__init__(self, manager)
@@ -160,7 +160,7 @@ class DownloadThread(PluginThread):
self.start()
- #----------------------------------------------------------------------
+ #--------------------------------------------------------------------------
def run(self):
"""run method"""
pyfile = None
@@ -422,7 +422,7 @@ class DecrypterThread(PluginThread):
class HookThread(PluginThread):
"""thread for hooks"""
- #----------------------------------------------------------------------
+ #--------------------------------------------------------------------------
def __init__(self, m, function, args, kwargs):
"""Constructor"""
PluginThread.__init__(self, m)