~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2010-05-11 08:44:59 UTC
  • mfrom: (5221 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100511084459-pb0uinna9zs3wu59
Merge trunk - resolve conflicts.

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