/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: Parth Malwankar
  • Date: 2010-05-05 14:02:53 UTC
  • mto: This revision was merged to the branch mainline in revision 5213.
  • Revision ID: parth.malwankar@gmail.com-20100505140253-fqdiwllq4o4htbsg
added comment to init/init-repo pass tests for lacking whoami.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2176
2176
 
2177
2177
    def __init__(self, repo):
2178
2178
        BzrError.__init__(self)
2179
 
        self.repo_path = repo.user_url
 
2179
        self.repo_path = repo.bzrdir.root_transport.base
2180
2180
 
2181
2181
 
2182
2182
class InconsistentDelta(BzrError):
2754
2754
 
2755
2755
    def __init__(self, bzrdir):
2756
2756
        import bzrlib.urlutils as urlutils
2757
 
        display_url = urlutils.unescape_for_display(bzrdir.user_url,
 
2757
        display_url = urlutils.unescape_for_display(bzrdir.root_transport.base,
2758
2758
                                                    'ascii')
2759
2759
        BzrError.__init__(self, bzrdir=bzrdir, display_url=display_url)
2760
2760
 
2835
2835
            more = ' ' + more
2836
2836
        import bzrlib.urlutils as urlutils
2837
2837
        display_url = urlutils.unescape_for_display(
2838
 
            tree.user_url, 'ascii')
 
2838
            tree.bzrdir.root_transport.base, 'ascii')
2839
2839
        BzrError.__init__(self, tree=tree, display_url=display_url, more=more)
2840
2840
 
2841
2841
 
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