~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Jelmer Vernooij
  • Date: 2012-04-02 01:44:26 UTC
  • mfrom: (6518 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6519.
  • Revision ID: jelmer@samba.org-20120402014426-0o5qtysohyl006b2
merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
794
794
            (1, 17))
795
795
        self.add_hook('pre_command',
796
796
            "Called prior to executing a command. Called with the command "
797
 
            "object.", (2, 5))
 
797
            "object.", (2, 6))
798
798
        self.add_hook('post_command',
799
799
            "Called after executing a command. Called with the command "
800
 
            "object.", (2, 5))
 
800
            "object.", (2, 6))
801
801
 
802
802
Command.hooks = CommandHooks()
803
803