# -*- coding: utf-8 -*- # # Copyright (C) 2008-2009 Ido Abramovich # Copyright (C) 2009 Andrew Resch # # 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()