EVOLUTION-MANAGER
Edit File: logout.py
from __future__ import print_function, unicode_literals import logging from rbtools.commands import Command class Logout(Command): """Logs out of a Review Board server. The session cookie will be removed into from the .rbtools-cookies file. The next RBTools command you run will then prompt for credentials. """ name = 'logout' author = 'The Review Board Project' option_list = [ Command.server_options, ] def main(self): """Run the command.""" server_url = self.get_server_url(None, None) api_client, api_root = self.get_api(server_url) session = api_root.get_session(expand='user') if session.authenticated: api_client.logout() logging.info('You are now logged out of Review Board at %s', api_client.domain) else: logging.info('You are already logged out of Review Board at %s', api_client.domain)