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