~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Adeodato Simó
  • Date: 2007-06-19 15:20:34 UTC
  • mto: (2537.1.1 bzr.ab.integration)
  • mto: This revision was merged to the branch mainline in revision 2538.
  • Revision ID: dato@net.com.org.es-20070619152034-swymq71ibtadlvxb
Fix BzrError docstring: internal_error defaults to False, not to True.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    """
49
49
    Base class for errors raised by bzrlib.
50
50
 
51
 
    :cvar internal_error: if true (or absent) this was probably caused by a
52
 
    bzr bug and should be displayed with a traceback; if False this was
 
51
    :cvar internal_error: if True this was probably caused by a bzr bug and
 
52
    should be displayed with a traceback; if False (or absent) this was
53
53
    probably a user or environment error and they don't need the gory details.
54
54
    (That can be overridden by -Derror on the command line.)
55
55