Execute a system process and debug the invocation
(args)
| 41 | |
| 42 | |
| 43 | def explained_check_call(args): |
| 44 | """ |
| 45 | Execute a system process and debug the invocation |
| 46 | """ |
| 47 | logger.debug("Executing: %s", " ".join(args)) |
| 48 | return check_call(args) |
| 49 | |
| 50 | |
| 51 | def filename_dist(dist): |
no outgoing calls
no test coverage detected