Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(600)

Unified Diff: verification/presubmit_check.py

Issue 5995005: Fix a truckload of bugs as I'm trying it the commit-queue out on real changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: rebase against trunk Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « projects.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: verification/presubmit_check.py
diff --git a/verification/presubmit_check.py b/verification/presubmit_check.py
index 4b8c8910bf0658b0184d8ea87bbdc7e4a5b747d5..3c2ef6ad6736bac337e217909d774c3adcf341bf 100644
--- a/verification/presubmit_check.py
+++ b/verification/presubmit_check.py
@@ -36,12 +36,12 @@ class PresubmitCheckVerifier(base.Verifier):
# This one runs synchronously for now.
cmd = [
'--commit',
- '--issue', pending.issue,
- '--patchset', pending.patchset,
+ '--issue', str(pending.issue),
+ '--patchset', str(pending.patchset),
'--name', pending.pending_name(),
'--description', pending.description,
]
- stat.state = presubmit_support.Main(cmd)
+ stat.state = not presubmit_support.Main(cmd)
def update_status(self, queue):
pass
« no previous file with comments | « projects.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698