~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-05-07 11:50:28 UTC
  • mfrom: (5147.4.7 more-colo)
  • Revision ID: pqm@pqm.ubuntu.com-20100507115028-tuuxmnormm8oetw6
(vila, for jelmer) Pass the colocated branch name along in more places,
        add extra tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
397
397
            will not mangled.
398
398
 
399
399
    :cvar hooks: An instance of CommandHooks.
400
 
    :ivar __doc__: The help shown by 'bzr help command' for this command.
401
 
        This is set by assigning explicitly to __doc__ so that -OO can
402
 
        be used::
403
 
 
404
 
        class Foo(Command):
405
 
            __doc__ = "My help goes here"
406
400
    """
407
401
    aliases = []
408
402
    takes_args = []
413
407
 
414
408
    def __init__(self):
415
409
        """Construct an instance of this command."""
 
410
        if self.__doc__ == Command.__doc__:
 
411
            warn("No help message set for %r" % self)
416
412
        # List of standard options directly supported
417
413
        self.supported_std_options = []
418
414
        self._setup_run()
486
482
            message explaining how to obtain full help.
487
483
        """
488
484
        doc = self.help()
489
 
        if not doc:
490
 
            doc = "No help for this command."
 
485
        if doc is None:
 
486
            raise NotImplementedError("sorry, no detailed help yet for %r" % self.name())
491
487
 
492
488
        # Extract the summary (purpose) and sections out from the text
493
489
        purpose,sections,order = self._get_help_parts(doc)
1054
1050
        elif a == '--coverage':
1055
1051
            opt_coverage_dir = argv[i + 1]
1056
1052
            i += 1
1057
 
        elif a == '--profile-imports':
1058
 
            pass # already handled in startup script Bug #588277
1059
1053
        elif a.startswith('-D'):
1060
1054
            debug.debug_flags.add(a[2:])
1061
1055
        else: