MCPcopy Index your code
hub / github.com/StackStorm/st2 / _print_config

Method _print_config

st2client/st2client/shell.py:498–505  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

496 return exit_code
497
498 def _print_config(self, args):
499 config = self._parse_config_file(args=args)
500
501 for section, options in six.iteritems(config):
502 print("[%s]" % (section))
503
504 for name, value in six.iteritems(options):
505 print("%s = %s" % (name, value))
506
507 def _check_locale_and_print_warning(self):
508 """

Callers 1

runMethod · 0.95

Calls 1

_parse_config_fileMethod · 0.80

Tested by

no test coverage detected