/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
from cStringIO import StringIO
58
58
 
59
59
from bzrlib import (
 
60
    debug,
60
61
    errors,
61
62
    inventory,
62
63
    tree,
497
498
            self.pb_stage_name = "Running post commit hooks [%s]" % \
498
499
                Branch.hooks.get_hook_name(hook)
499
500
            self._emit_progress()
 
501
            if 'hooks' in debug.debug_flags:
 
502
                mutter("Invoking commit hook: %r", hook)
500
503
            hook(hook_local, hook_master, old_revno, old_revid, new_revno,
501
504
                self.rev_id)
502
505