~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Brian de Alwis
  • Date: 2012-02-25 14:13:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6476.
  • Revision ID: bsd@acm.org-20120225141319-siks2mh58b91ep5v
Doc fix: command hooks available in 2.6

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