Create directory
(path)
| 407 | |
| 408 | |
| 409 | def mkdir(path): |
| 410 | """ |
| 411 | Create directory |
| 412 | """ |
| 413 | if not os.path.exists(path): |
| 414 | logger.debug(' * Creating: %s ... ', path, extra=dict(continued=True)) |
| 415 | os.makedirs(path) |
| 416 | logger.debug('done.') |
| 417 | else: |
| 418 | logger.debug(' * Directory %s already exists', path) |
| 419 | |
| 420 | |
| 421 | def make_executable(filename): |
no outgoing calls
no test coverage detected