mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
Do not attempt to move a torrents storage if the destination path does
not exist
This commit is contained in:
parent
961d405921
commit
dfb75d67b9
1 changed files with 3 additions and 0 deletions
|
@ -797,6 +797,9 @@ class Torrent(object):
|
||||||
|
|
||||||
def move_storage(self, dest):
|
def move_storage(self, dest):
|
||||||
"""Move a torrent's storage location"""
|
"""Move a torrent's storage location"""
|
||||||
|
if not os.path.exists(dest):
|
||||||
|
log.error("Could not move storage for torrent %s since %s does not exist!", self.torrent_id, dest)
|
||||||
|
return False
|
||||||
try:
|
try:
|
||||||
self.handle.move_storage(dest.encode("utf8"))
|
self.handle.move_storage(dest.encode("utf8"))
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue