(self, args)
| 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 | """ |