|
|
@ -141,6 +141,12 @@ class Interface(cmd.Cmd): |
|
|
|
thread = console_utils.fetch_thread(message, self._connection) |
|
|
|
thread = console_utils.fetch_thread(message, self._connection) |
|
|
|
console_utils.print_thread(thread, self._connection) |
|
|
|
console_utils.print_thread(thread, self._connection) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def do_retweet(self, line): |
|
|
|
|
|
|
|
"""Resends the original message to your followers.""" |
|
|
|
|
|
|
|
original_message = self._messages[self._cursor] |
|
|
|
|
|
|
|
new_message = console_utils.make_retweet(original_message) |
|
|
|
|
|
|
|
return self.do_say(new_message) |
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line): |
|
|
|
def do_exit(self, line): |
|
|
|
"""Quit the application.""" |
|
|
|
"""Quit the application.""" |
|
|
|
_log.debug('Exiting application') |
|
|
|
_log.debug('Exiting application') |
|
|
|