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

Unified Diff: presubmit_canned_checks.py

Issue 7493050: Do not interfere with git cl patch <issue> (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_canned_checks.py
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py
index a69bacee4ebd630a8377bfa1983b201e9be3e75b..a0b95729477c1344a0f47114829a67a8799d5bc3 100644
--- a/presubmit_canned_checks.py
+++ b/presubmit_canned_checks.py
@@ -66,8 +66,8 @@ def CheckChangeHasDescription(input_api, output_api):
def CheckChangeWasUploaded(input_api, output_api):
"""Checks that the issue was uploaded before committing."""
- if (input_api.is_committing and
- (not input_api.change.issue or not input_api.change.patchset)):
+ if input_api.is_committing and not input_api.change.issue:
+ # If patchset is None, it's likely a patchset in issue.
Dirk Pranke 2011/07/25 19:06:54 I don't follow this comment?
M-A Ruel 2011/07/25 19:10:01 That's normal, it didn't make sense either. Fixed.
return [output_api.PresubmitError(
'Issue wasn\'t uploaded. Please upload first.')]
return []
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698