diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-21 18:16:06 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-21 18:16:06 +0200 |
commit | 9a4f077714993bacb4418e7c5b4cb85f5d1601d1 (patch) | |
tree | 86e6951c572f3d1602872c6eb654d79a8e0dce99 /module/thread_list.py | |
parent | fixed no url return bug (diff) | |
download | pyload-9a4f077714993bacb4418e7c5b4cb85f5d1601d1.tar.xz |
plugin system changings
Diffstat (limited to 'module/thread_list.py')
-rw-r--r-- | module/thread_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/thread_list.py b/module/thread_list.py index 54a17e318..63f20c6f5 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -107,7 +107,7 @@ class Thread_List(object): self.list.files.insert(0, pyfile) if pyfile.status.type == "failed": - self.parent.logger.warning("Download failed: " + pyfile.url) + self.parent.logger.warning("Download failed: " + pyfile.url+" | "+ pyfile.status.error) with open(self.parent.config['failed_file'], 'a') as f: f.write(pyfile.url + "\n") |