Coverage for certbot/reporter.py : 96%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
"""Collects and displays information to the user."""
"""Collects and displays information to the user.
:ivar `queue.PriorityQueue` messages: Messages to be displayed to the user.
"""
"""High priority constant. See `add_message`.""" """Medium priority constant. See `add_message`.""" """Low priority constant. See `add_message`."""
"""Adds msg to the list of messages to be printed.
:param str msg: Message to be displayed to the user.
:param int priority: One of `HIGH_PRIORITY`, `MEDIUM_PRIORITY`, or `LOW_PRIORITY`.
:param bool on_crash: Whether or not the message should be printed if the program exits abnormally.
"""
"""Prints messages to the user and clears the message queue.
If there is an unhandled exception, only messages for which ``on_crash`` is ``True`` are printed.
""" initial_indent=' - ', subsequent_indent=(' ' * 3), break_long_words=False, break_on_hyphens=False) initial_indent=first_wrapper.subsequent_indent, subsequent_indent=first_wrapper.subsequent_indent, break_long_words=False, break_on_hyphens=False) # In --quiet mode, we only print high priority messages that # are flagged for crash cases if not (msg.priority == self.HIGH_PRIORITY and msg.on_crash): continue next_wrapper.fill(line) for line in lines[1:])) |