diff --git a/deluge/ui/console/modes/torrent_actions.py b/deluge/ui/console/modes/torrent_actions.py
index 2988245..fb6a9f4 100644
a
|
b
|
def _do_set_torrent_options(ids, result):
|
250 | 250 | for tid in ids: |
251 | 251 | if "move_on_completed_path" in options: |
252 | 252 | client.core.set_torrent_move_completed_path(tid, options["move_on_completed_path"]) |
| 253 | if "move_on_completed" in options: |
| 254 | client.core.set_torrent_move_completed(tid, options["move_on_completed"]) |
253 | 255 | if "is_auto_managed" in options: |
254 | 256 | client.core.set_torrent_auto_managed(tid, options["is_auto_managed"]) |
255 | 257 | if "remove_at_ratio" in options: |