()
| 581 | |
| 582 | |
| 583 | def get_default_config_file(): |
| 584 | config_path = os.path.join(os.path.abspath(os.getcwd()), |
| 585 | 'gunicorn.conf.py') |
| 586 | if os.path.exists(config_path): |
| 587 | return config_path |
| 588 | return None |
| 589 | |
| 590 | |
| 591 | class ConfigFile(Setting): |
no test coverage detected