diff options
author | 2014-04-19 15:31:18 +0200 | |
---|---|---|
committer | 2014-04-19 15:31:41 +0200 | |
commit | 313bad0316684fed4d1e347ebbb4e42e4e6e49dd (patch) | |
tree | 7f215acaa2a70eb36abee66979fe5fbb70592930 /pyload/DownloadManager.py | |
parent | Updated translations (diff) | |
download | pyload-313bad0316684fed4d1e347ebbb4e42e4e6e49dd.tar.xz |
major bugfix for link and packing adding
Diffstat (limited to 'pyload/DownloadManager.py')
-rw-r--r-- | pyload/DownloadManager.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pyload/DownloadManager.py b/pyload/DownloadManager.py index abb61a4fd..e3a767345 100644 --- a/pyload/DownloadManager.py +++ b/pyload/DownloadManager.py @@ -26,8 +26,6 @@ from ReadWriteLock import ReadWriteLock from Api import DownloadStatus as DS -from datatypes.PyFile import PyFile - from utils import lock, read_lock from utils.fs import exists, join, free_space @@ -221,7 +219,7 @@ class DownloadManager: elif plugin == "crypter": self.startDecrypterThread(info) else: - self.log.error(_("Plugin type '%s' is can be used for downloading") % plugin) + self.log.error(_("Plugin type '%s' can't be used for downloading") % plugin) return False |