(*args)
| 321 | |
| 322 | |
| 323 | def _list_dbs(*args): |
| 324 | if file_config is None: |
| 325 | # assume the current working directory is the one containing the |
| 326 | # setup file |
| 327 | read_config(Path.cwd()) |
| 328 | print("Available --db options (use --dburi to override)") |
| 329 | for macro in sorted(file_config.options("db")): |
| 330 | print("%20s\t%s" % (macro, file_config.get("db", macro))) |
| 331 | sys.exit(0) |
| 332 | |
| 333 | |
| 334 | def _requirements_opt(opt_str, value, parser): |
nothing calls this directly
no test coverage detected