~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2006-04-16 17:49:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1673.
  • Revision ID: aaron.bentley@utoronto.ca-20060416174914-99d5dec4eafbb923
Whitespace fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
837
837
    """The method %(mname)s is not supported on objects of type %(tname)s."""
838
838
    def __init__(self, method, method_self):
839
839
        self.method = method
840
 
 
841
840
        self.mname = method.__name__
842
841
        self.tname = type(method_self).__name__
843
842
 
844
843
 
845
844
class BinaryFile(BzrNewError):
846
845
    """File is binary but should be text."""
847