summaryrefslogtreecommitdiffstats
path: root/deluge/ui/console/cmdline/commands/gui.py
blob: 575bc9b3a1def5cd41d66d63f25eb15092784bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Copyright (C) 2011 Nick Lanham <nick@afternight.org>
#
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
# the additional special exception to link portions of this program with the OpenSSL library.
# See LICENSE for more details.
#

import logging

import deluge.component as component

from . import BaseCommand

log = logging.getLogger(__name__)


class Command(BaseCommand):
    """Enable interactive mode"""

    interactive_only = True

    def handle(self, options):
        console = component.get('ConsoleUI')
        at = console.set_mode('TorrentList')
        at.go_top = True
        at.resume()