summaryrefslogtreecommitdiffstats
path: root/deluge/ui/console/cmdline/commands/rm.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind@gmail.com>2016-11-13 15:09:30 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2016-11-17 10:19:59 +0000
commit2657cc39218d6ec3b5a7b5f9a462a8262e7404d5 (patch)
tree4d54c0eb599caf199ff8ca7548d9ae8f0817e47b /deluge/ui/console/cmdline/commands/rm.py
parent441861786b02a00c95e9d485b8a814ece43edd50 (diff)
downloaddeluge-2657cc39218d6ec3b5a7b5f9a462a8262e7404d5.tar.gz
deluge-2657cc39218d6ec3b5a7b5f9a462a8262e7404d5.tar.bz2
deluge-2657cc39218d6ec3b5a7b5f9a462a8262e7404d5.zip
[Lint] Quote cleanup
Diffstat (limited to 'deluge/ui/console/cmdline/commands/rm.py')
-rw-r--r--deluge/ui/console/cmdline/commands/rm.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/deluge/ui/console/cmdline/commands/rm.py b/deluge/ui/console/cmdline/commands/rm.py
index 0cbda3b19..02f0ee204 100644
--- a/deluge/ui/console/cmdline/commands/rm.py
+++ b/deluge/ui/console/cmdline/commands/rm.py
@@ -23,7 +23,8 @@ class Command(BaseCommand):
aliases = ['del']
def add_arguments(self, parser):
- parser.add_argument('--remove_data', action='store_true', default=False, help=_("remove the torrent's data"))
+ parser.add_argument('--remove_data', action='store_true', default=False,
+ help=_('Also removes the torrent data'))
parser.add_argument('-c', '--confirm', action='store_true', default=False,
help=_('List the matching torrents without removing.'))
parser.add_argument('torrent_ids', metavar='<torrent-id>', nargs='+', help=_('One or more torrent ids'))