Hi, <br><br>I have the following code<br><br>def run_manager(params):<br>    print &#39;hook called&#39;<br>    manager = _manager.Manager(params)<br>    manager.run()<br><br>Branch.hooks.install_named_hook(&#39;post_commit&#39;, run_manager, &#39;Saves commit in django&#39;)<br>
print Branch.hooks<br><br>I call <br>$ bzr commit bzr+http://... <br><br>Branch.hooks is printed, and it shows the post_commit hook to be registered, but the run_manager method is not called<br><br>I am sure to miss something very obvious, could someone point out what I didn&#39;t get?<br>
<br>thanks,<br>Viktor<br>