/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2010-04-28 07:03:38 UTC
  • mfrom: (5188 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5189.
  • Revision ID: mbp@sourcefrog.net-20100428070338-2af8y3takgfkrkyp
merge news

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