Beispiel #1
0
    def print_help(self):
        super(ArgumentParser, self).print_help()

        if self.prog == 'conda' and sys.argv[1:] in ([], ['help'], ['-h'],
                                                     ['--help']):
            from conda.cli.find_commands import help
            help()
Beispiel #2
0
    def print_help(self):
        super(ArgumentParser, self).print_help()

        if self.prog == "conda" and sys.argv[1:] in ([], ["help"], ["-h"], ["--help"]):
            from conda.cli.find_commands import help

            help()
Beispiel #3
0
    def print_help(self):
        super(ArgumentParser, self).print_help()

        if sys.argv[1:] in ([], ['help'], ['-h'], ['--help']):
            from conda.cli.find_commands import help
            help()