(msg, **kwargs)
| 27 | |
| 28 | |
| 29 | def status_print(msg, **kwargs): |
| 30 | try: |
| 31 | print(msg, **kwargs) |
| 32 | except UnicodeEncodeError: |
| 33 | print(msg.encode("ascii", "ignore"), **kwargs) |
| 34 | |
| 35 | |
| 36 | def bootstrap_components(components_source, concurrency, install_type): |
no outgoing calls
no test coverage detected
searching dependent graphs…