This patch mainly updates a bunch of NotImplementedErrors in bzrlib/branch.py
from this style:
raise NotImplementedError('foo is abstract')
to this:
raise NotImplementedError(self.foo)
Also, there's some minor PEP 8 nits in bzrlib/transport/sftp.py.
-Andrew.
-------------- next part --------------