AutoAdd plugin: Don't try to remove the same path twice!
This commit is contained in:
parent
4d4c6404b1
commit
cfd955a605
|
@ -280,12 +280,9 @@ class Core(CorePluginBase):
|
||||||
open(copy_torrent_file, 'wb').write(
|
open(copy_torrent_file, 'wb').write(
|
||||||
open(filepath, 'rb').read()
|
open(filepath, 'rb').read()
|
||||||
)
|
)
|
||||||
|
os.remove(filepath)
|
||||||
except OSError, why:
|
except OSError, why:
|
||||||
raise why
|
raise why
|
||||||
else:
|
|
||||||
os.remove(filepath)
|
|
||||||
else:
|
|
||||||
os.remove(filepath)
|
|
||||||
else:
|
else:
|
||||||
raise why
|
raise why
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue