commit | 99e2cdf47a3f1083bde35d7553fda218fd7f37d6 | [log] [tgz] |
---|---|---|
author | qyearsley <qyearsley@chromium.org> | Sun Oct 23 12:51:41 2016 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Sun Oct 23 12:51:41 2016 -0700 |
tree | 4f2ed22e1bff74cf437f4692ab4b94045cfd54ac | |
parent | d975b30c20b53879bf466d9c82a59813ea8122e6 [diff] [blame] |
Print failure reason when git cl try can't trigger jobs on a CL. This is a very little fix. Review-Url: https://codereview.chromium.org/2441213002
diff --git a/git_cl.py b/git_cl.py index 5b0f00a..33517b9 100755 --- a/git_cl.py +++ b/git_cl.py
@@ -4810,7 +4810,7 @@ error_message = cl.CannotTriggerTryJobReason() if error_message: - parser.error('Can\'t trigger try jobs: %s') + parser.error('Can\'t trigger try jobs: %s' % error_message) if not options.name: options.name = cl.GetBranch()