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