/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: John Arbash Meinel
  • Date: 2009-02-23 15:42:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4033.
  • Revision ID: john@arbash-meinel.com-20090223154247-has31lzprui21glu
Track down a few more files that have trailing whitespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2970
2970
class NoSuchView(BzrError):
2971
2971
    """A view does not exist.
2972
2972
    """
2973
 
 
 
2973
 
2974
2974
    _fmt = u"No such view: %(view_name)s."
2975
2975
 
2976
2976
    def __init__(self, view_name):
2980
2980
class ViewsNotSupported(BzrError):
2981
2981
    """Views are not supported by a tree format.
2982
2982
    """
2983
 
 
 
2983
 
2984
2984
    _fmt = ("Views are not supported by %(tree)s;"
2985
2985
            " use 'bzr upgrade' to change your tree to a later format.")
2986
2986
 
2999
2999
 
3000
3000
 
3001
3001
class UnresumableWriteGroup(BzrError):
3002
 
    
 
3002
 
3003
3003
    _fmt = ("Repository %(repository)s cannot resume write group "
3004
3004
            "%(write_groups)r: %(reason)s")
3005
3005
 
3012
3012
 
3013
3013
 
3014
3014
class UnsuspendableWriteGroup(BzrError):
3015
 
    
 
3015
 
3016
3016
    _fmt = ("Repository %(repository)s cannot suspend a write group.")
3017
3017
 
3018
3018
    internal_error = True