summaryrefslogtreecommitdiffstats
path: root/pyload/manager/thread
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-13 15:56:57 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-13 15:56:57 +0100
commitacc46fc3497a66a427b795b4a22c6e71d69185a1 (patch)
tree2d315b838a76435fc456b972c99c28d1732b2f70 /pyload/manager/thread
parentCode fixes (diff)
downloadpyload-acc46fc3497a66a427b795b4a22c6e71d69185a1.tar.xz
Update
Diffstat (limited to 'pyload/manager/thread')
-rw-r--r--pyload/manager/thread/Addon.py (renamed from pyload/manager/thread/AddonThread.py)2
-rw-r--r--pyload/manager/thread/Decrypter.py (renamed from pyload/manager/thread/DecrypterThread.py)4
-rw-r--r--pyload/manager/thread/Download.py (renamed from pyload/manager/thread/DownloadThread.py)4
-rw-r--r--pyload/manager/thread/Info.py (renamed from pyload/manager/thread/InfoThread.py)4
-rw-r--r--pyload/manager/thread/Plugin.py (renamed from pyload/manager/thread/PluginThread.py)4
-rw-r--r--pyload/manager/thread/Server.py (renamed from pyload/manager/thread/ServerThread.py)2
6 files changed, 10 insertions, 10 deletions
diff --git a/pyload/manager/thread/AddonThread.py b/pyload/manager/thread/Addon.py
index a84856b0a..7feec227e 100644
--- a/pyload/manager/thread/AddonThread.py
+++ b/pyload/manager/thread/Addon.py
@@ -14,7 +14,7 @@ from types import MethodType
from pycurl import error
-from pyload.manager.thread.PluginThread import PluginThread
+from pyload.manager.thread.Plugin import PluginThread
class AddonThread(PluginThread):
diff --git a/pyload/manager/thread/DecrypterThread.py b/pyload/manager/thread/Decrypter.py
index 003b5f082..51544d1b9 100644
--- a/pyload/manager/thread/DecrypterThread.py
+++ b/pyload/manager/thread/Decrypter.py
@@ -14,8 +14,8 @@ from types import MethodType
from pycurl import error
-from pyload.manager.thread.PluginThread import PluginThread
-from pyload.plugins.Plugin import Abort, Fail, Retry
+from pyload.manager.thread.Plugin import PluginThread
+from pyload.plugin.Plugin import Abort, Fail, Retry
class DecrypterThread(PluginThread):
diff --git a/pyload/manager/thread/DownloadThread.py b/pyload/manager/thread/Download.py
index d876000da..c7d21a4ba 100644
--- a/pyload/manager/thread/DownloadThread.py
+++ b/pyload/manager/thread/Download.py
@@ -14,8 +14,8 @@ from types import MethodType
from pycurl import error
-from pyload.manager.thread.PluginThread import PluginThread
-from pyload.plugins.Plugin import Abort, Fail, Reconnect, Retry, SkipDownload
+from pyload.manager.thread.Plugin import PluginThread
+from pyload.plugin.Plugin import Abort, Fail, Reconnect, Retry, SkipDownload
class DownloadThread(PluginThread):
diff --git a/pyload/manager/thread/InfoThread.py b/pyload/manager/thread/Info.py
index 99bf97fc8..4526a07ed 100644
--- a/pyload/manager/thread/InfoThread.py
+++ b/pyload/manager/thread/Info.py
@@ -14,8 +14,8 @@ from types import MethodType
from pycurl import error
-from pyload.datatype.PyFile import PyFile
-from pyload.manager.thread.PluginThread import PluginThread
+from pyload.datatype.File import PyFile
+from pyload.manager.thread.Plugin import PluginThread
from pyload.api import OnlineStatus
diff --git a/pyload/manager/thread/PluginThread.py b/pyload/manager/thread/Plugin.py
index 3cdae122f..70ee747a8 100644
--- a/pyload/manager/thread/PluginThread.py
+++ b/pyload/manager/thread/Plugin.py
@@ -14,8 +14,8 @@ from types import MethodType
from pycurl import error
-from pyload.datatype.PyFile import PyFile
-from pyload.plugins.Plugin import Abort, Fail, Reconnect, Retry, SkipDownload
+from pyload.datatype.File import PyFile
+from pyload.plugin.Plugin import Abort, Fail, Reconnect, Retry, SkipDownload
from pyload.utils.packagetools import parseNames
from pyload.utils import safe_join
from pyload.api import OnlineStatus
diff --git a/pyload/manager/thread/ServerThread.py b/pyload/manager/thread/Server.py
index a8b95cd56..f3f174e74 100644
--- a/pyload/manager/thread/ServerThread.py
+++ b/pyload/manager/thread/Server.py
@@ -59,7 +59,7 @@ class WebServer(threading.Thread):
except Exception, e:
log.error(_("Error importing lightweight server: %s") % e)
log.warning(_("You need to download and compile bjoern, https://github.com/jonashaag/bjoern"))
- log.warning(_("Copy the boern.so to pyload/lib folder or use setup.py install"))
+ log.warning(_("Copy the boern.so to the lib folder or use setup.py install"))
log.warning(_("Of course you need to be familiar with linux and know how to compile software"))
self.server = "builtin"
else: