~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2010-05-10 11:34:20 UTC
  • mfrom: (5218 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5221.
  • Revision ID: aaron@aaronbentley.com-20100510113420-toh2d5yioobb5uq1
Merged bzr.dev into transform-commit-full.

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