658
667
def run_argv_aliases(self, argv, alias_argv=None):
659
668
"""Parse the command line and run with extra aliases in alias_argv."""
660
669
args, opts = parse_args(self, argv, alias_argv)
662
672
# Process the standard options
663
673
if 'help' in opts: # e.g. bzr add --help
666
676
if 'usage' in opts: # e.g. bzr add --usage
669
679
trace.set_verbosity_level(option._verbosity_level)
670
680
if 'verbose' in self.supported_std_options: