[Console] Fix 'rm' command hanging when done

Commander.exec_command was await'ing returned deferreds as per commit 253eb22.

Closes: https://github.com/deluge-torrent/deluge/pull/464
This commit is contained in:
Martin Hertz 2024-09-03 21:48:51 +02:00 committed by Calum Lind
parent e83f6b84fb
commit 0e197ee07e
No known key found for this signature in database
GPG key ID: 90597A687B836BA3

View file

@ -9,6 +9,8 @@
import logging
from twisted.internet import defer
import deluge.component as component
from deluge.ui.client import client
@ -63,7 +65,7 @@ class Command(BaseCommand):
_('Confirm with -c to remove the listed torrents (Count: %d)')
% len(torrent_ids)
)
return
return defer.succeed(True)
def on_removed_finished(errors):
if errors:
@ -76,6 +78,7 @@ class Command(BaseCommand):
log.info('Removing %d torrents', len(torrent_ids))
d = client.core.remove_torrents(torrent_ids, options.remove_data)
d.addCallback(on_removed_finished)
return d
def complete(self, line):
# We use the ConsoleUI torrent tab complete method