# File lib/t/printable.rb, line 106
      def print_status(status)
        if STDOUT.tty? && !options['no-color']
          say("   @#{status.from_user}", [:bold, :yellow])
        else
          say("   @#{status.from_user}")
        end
        print_wrapped(HTMLEntities.new.decode(status.text), :indent => 3)
        say
      end