From c49c3d2f60afe0f52094f2d7c2c2496750349887 Mon Sep 17 00:00:00 2001 From: Martin Hertz Date: Tue, 10 Sep 2024 09:37:17 +0200 Subject: [PATCH] Update deluge/ui/console/cmdline/commands/move.py Co-authored-by: Calum Lind --- deluge/ui/console/cmdline/commands/move.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/ui/console/cmdline/commands/move.py b/deluge/ui/console/cmdline/commands/move.py index 211a82ebd9..e6de51c4b3 100644 --- a/deluge/ui/console/cmdline/commands/move.py +++ b/deluge/ui/console/cmdline/commands/move.py @@ -46,8 +46,8 @@ def handle(self, options): for t_id in options.torrent_ids: tid = self.console.match_torrent(t_id) ids.extend(tid) - for name in tid: - names.append(self.console.get_torrent_name(name)) + ids = self.console.match_torrents(options.torrent_ids) + names = [self.console.get_torrent_name(id) for id in ids] def on_move(res): msg = 'Moved "{}" to {}'.format(', '.join(names), options.path)