[Core] Fix move_storage exception handling

This commit is contained in:
Calum Lind 2015-12-09 19:00:06 +00:00
commit f36ecc470b

View file

@ -1134,7 +1134,7 @@ class Torrent(object):
if not os.path.exists(dest): if not os.path.exists(dest):
try: try:
os.makedirs(dest) os.makedirs(dest)
except IOError as ex: except OSError as ex:
log.error("Could not move storage for torrent %s since %s does " log.error("Could not move storage for torrent %s since %s does "
"not exist and could not create the directory: %s", "not exist and could not create the directory: %s",
self.torrent_id, dest, ex) self.torrent_id, dest, ex)