Fix an error in the key

This commit is contained in:
Damien Churchill 2010-06-04 17:37:45 +01:00
parent e1e1472a8f
commit f6f9e0234a
1 changed files with 2 additions and 2 deletions

View File

@ -93,12 +93,12 @@ class Core(CorePluginBase):
def execute_commands(self, torrent_id, event):
torrent = component.get("TorrentManager").torrents[torrent_id]
info = torrent.get_status(["name", "save_path", "move_completed", "move_on_completed_path"])
info = torrent.get_status(["name", "save_path", "move_on_completed", "move_on_completed_path"])
# Grab the torrent name and save path
torrent_name = info["name"]
if event == "complete":
save_path = info["move_on_completed_path"] if info ["move_completed"] else info["save_path"]
save_path = info["move_on_completed_path"] if info ["move_on_completed"] else info["save_path"]
else:
save_path = info["save_path"]