()
| 1421 | |
| 1422 | |
| 1423 | def MainWrapper(): |
| 1424 | try: |
| 1425 | return Main(sys.argv[1:]) |
| 1426 | except: |
| 1427 | # Log uncaptured exceptions and report infra failure to the caller. |
| 1428 | traceback.print_exc() |
| 1429 | return INFRA_FAILURE_RETCODE |
| 1430 | |
| 1431 | |
| 1432 | if __name__ == '__main__': # pragma: no cover |
no test coverage detected
searching dependent graphs…