~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2010-05-06 23:54:05 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506235405-wii4elupfhzl3jvy
Add __str__ to the new helper classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3134
3134
    def __init__(self, bzrdir):
3135
3135
        self.bzrdir = bzrdir
3136
3136
 
3137
 
class NoWhoami(BzrError):
3138
 
 
3139
 
    _fmt = ('Unable to determine your name.\n'
3140
 
        "Please, set your name with the 'whoami' command.\n"
3141
 
        'E.g. bzr whoami "Your Name <name@example.com>"')
3142
 
 
3143