diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-23 12:24:47 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-23 12:24:47 +0200 |
commit | 395612848d08c89e23424ee3e03bab639ce27cc7 (patch) | |
tree | 6031055c45ca7580e44a1849916c698d34179f9d /module/plugins/Plugin.py | |
parent | fixes, 2nd icon (diff) | |
download | pyload-395612848d08c89e23424ee3e03bab639ce27cc7.tar.xz |
extern cnl
H: Bitte gib eine Versions-Meldung ein. Zeilen beginnend mit 'HG:' werden entfernt.
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index cdce7671d..1f680032a 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -234,7 +234,10 @@ class Plugin(object): task.removeTask() if not self.core.debug: - remove(temp.name) + try: + remove(temp.name) + except: + pass return result |