~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2006-04-20 02:04:22 UTC
  • mto: (1711.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1674.
  • Revision ID: robertc@robertcollins.net-20060420020422-350591ba235ee5ac
Mark knits as no longer experimental.

Show diffs side-by-side

added added

removed removed

Lines of Context:
765
765
 
766
766
 
767
767
class BzrBadParameterUnicode(BzrBadParameter):
768
 
    """Parameter %(param) is unicode by only byte-strings are permitted."""
 
768
    """Parameter %(param)s is unicode but only byte-strings are permitted."""
769
769
 
770
770
 
771
771
class BzrBadParameterContainsNewline(BzrBadParameter):
772
 
    """Parameter %(param) contains a newline."""
 
772
    """Parameter %(param)s contains a newline."""
773
773
 
774
774
 
775
775
class DependencyNotPresent(BzrNewError):