55
55
used in progress messages and error messages.
57
57
To reduce the start-up time of Breezy it is also possible to "lazily" install hooks,
59
59
to load the module that contains the hook point just to install the hook. Here's lazy
60
60
version of the example above::
64
64
def post_push_hook(push_result):
65
65
print "The new revno is %d" % push_result.new_revno
69
69
'post_push', post_push_hook, 'My post_push hook')