AutoAdd plugin: Don't try to remove the same path twice!

This commit is contained in:
Pedro Algarvio 2011-05-29 19:06:54 +01:00
parent 4d4c6404b1
commit cfd955a605
1 changed files with 1 additions and 4 deletions

View File

@ -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: