/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: Robert Collins
  • Date: 2006-04-19 23:32:08 UTC
  • mto: (1711.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1674.
  • Revision ID: robertc@robertcollins.net-20060419233208-2ed6906796994316
Make knit the default format.
Adjust affect tests to either have knit specific values or to be more generic,
as appropriate.
Disable all SFTP prefetching for known paramikos - direct readv support is now
a TODO.

Show diffs side-by-side

added added

removed removed

Lines of Context:
764
764
    """Parameter $(param)s is required but not present."""
765
765
 
766
766
 
 
767
class BzrBadParameterUnicode(BzrBadParameter):
 
768
    """Parameter %(param) is unicode by only byte-strings are permitted."""
 
769
 
 
770
 
 
771
class BzrBadParameterContainsNewline(BzrBadParameter):
 
772
    """Parameter %(param) contains a newline."""
 
773
 
 
774
 
767
775
class DependencyNotPresent(BzrNewError):
768
776
    """Unable to import library "%(library)s": %(error)s"""
769
777