~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Aaron Bentley
  • Date: 2006-06-12 02:11:45 UTC
  • mfrom: (1759.2.2 integration)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: aaron.bentley@utoronto.ca-20060612021145-0ced20f7791f3c66
Fix some typos (found using aspell) (Jelmer Vernooij).

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
Exceptions are reported in a brief form to stderr so as not to look scary.
29
29
BzrErrors are required to be able to format themselves into a properly
30
 
explanatory message.  This is not true for builtin excexceptions such as
 
30
explanatory message.  This is not true for builtin exceptions such as
31
31
KeyError, which typically just str to "0".  They're printed in a different
32
32
form.
33
33
"""
57
57
 
58
58
 
59
59
class QuietFormatter(logging.Formatter):
60
 
    """Formatter that supresses the details of errors.
 
60
    """Formatter that suppresses the details of errors.
61
61
 
62
62
    This is used by default on stderr so as not to scare the user.
63
63
    """
64
 
    # At first I tried overriding formatException to suppress the
 
64
    # At first I tried overriding FormatException to suppress the
65
65
    # exception details, but that has global effect: no loggers
66
66
    # can get the exception details is we suppress them here.
67
67