mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Also handle alias for quit (exit)
This commit is contained in:
parent
85cdbec10d
commit
0a6c2ee147
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class ConsoleUI(component.Component):
|
|||
for command in commands:
|
||||
d.addCallback(do_command, command)
|
||||
|
||||
if "quit" not in commands:
|
||||
if "quit" not in commands and "exit" not in commands:
|
||||
d.addCallback(do_command, "quit")
|
||||
|
||||
# We need to wait for the rpcs in start() to finish before processing
|
||||
|
|
Loading…
Add table
Reference in a new issue