/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: Hermann Kraus
  • Date: 2006-08-06 23:06:44 UTC
  • mto: (1711.2.121 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1918.
  • Revision ID: hermann@physiklaborant.de-20060806230644-2ed4719df86b8bd1
Detect wrong eol markers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1078
1078
 
1079
1079
    def __init__(self, text):
1080
1080
        BzrNewError.__init__(self)
1081
 
        self.text = text
 
 
b'\\ No newline at end of file'
 
1081
        self.text = text
 
1082
 
 
1083
class UnsupportedEOLMarker(BadBundle):
 
1084
    """End of line marker was not \\n in bzr revision-bundle"""    
 
1085
 
 
1086
    def __init__(self):
 
1087
        BzrNewError.__init__(self)