mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
AutoAdd plugin: Don't try to remove the same path twice!
This commit is contained in:
parent
4d4c6404b1
commit
cfd955a605
1 changed files with 1 additions and 4 deletions
|
@ -280,12 +280,9 @@ class Core(CorePluginBase):
|
|||
open(copy_torrent_file, 'wb').write(
|
||||
open(filepath, 'rb').read()
|
||||
)
|
||||
os.remove(filepath)
|
||||
except OSError, why:
|
||||
raise why
|
||||
else:
|
||||
os.remove(filepath)
|
||||
else:
|
||||
os.remove(filepath)
|
||||
else:
|
||||
raise why
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue