()
| 89 | |
| 90 | |
| 91 | def create_config_dir_for_first_use(): |
| 92 | config_dir = os.path.dirname(config_location()) |
| 93 | if not os.path.exists(config_dir): |
| 94 | os.makedirs(config_dir) |
| 95 | return True |
| 96 | |
| 97 | return False |
| 98 | |
| 99 | |
| 100 | def display_version_message(options): |
no test coverage detected