~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Parth Malwankar
  • Date: 2010-05-06 06:51:11 UTC
  • mfrom: (5214 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5216.
  • Revision ID: parth.malwankar@gmail.com-20100506065111-sdk7cnail79uzs3m
merged in changes from trunk.

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