From d793b9e6b8e4fabb78175a9b5d0d137ee8da98fb Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Thu, 15 Jul 2010 10:50:15 -0700 Subject: [PATCH] Attempt to create a move_storage destination path if it doesn't exist --- deluge/core/torrent.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index dc569c5f8..692466328 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -795,8 +795,13 @@ class Torrent(object): def move_storage(self, dest): """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 to make the destination path if it doesn't exist + os.makedirs(dest) + except IOError, e: + log.exception(e) + log.error("Could not move storage for torrent %s since %s does not exist and could not create the directory.", self.torrent_id, dest) + return False try: self.handle.move_storage(dest.encode("utf8")) except: