summaryrefslogtreecommitdiffstats
path: root/deluge/ui/console/cmdline/commands/quit.py
blob: 261a01a9bde21055533f585d88f1676e3ac64c75 (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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2008-2009 Ido Abramovich <ido.deluge@gmail.com>
# Copyright (C) 2009 Andrew Resch <andrewresch@gmail.com>
#
# 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.
#

from __future__ import unicode_literals

import deluge.component as component

from . import BaseCommand


class Command(BaseCommand):
    """Exit the client"""

    aliases = ['exit']
    interactive_only = True

    def handle(self, options):
        component.get('ConsoleUI').quit()