~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hooks.py

Add test for config load hook for remote configs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
        try:
258
258
            uninstall = getattr(hook, "uninstall")
259
259
        except AttributeError:
260
 
            raise errors.UnsupportedOperation(self.install_named_hook_lazy,
261
 
                self)
 
260
            raise errors.UnsupportedOperation(self.uninstall_named_hook, self)
262
261
        else:
263
262
            uninstall(label)
264
263