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

Unified Diff: subprocess2.py

Issue 253013004: git new-branch displays an explanatory line. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Print message to stderr Created 6 years, 8 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 | « git_new_branch.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: subprocess2.py
diff --git a/subprocess2.py b/subprocess2.py
index 716ef20faed48ffc9866e5da77a5207927bf857d..3beeaeb58ee0243218321136e1a8d95b21a1ceb6 100644
--- a/subprocess2.py
+++ b/subprocess2.py
@@ -510,5 +510,5 @@ def check_output(args, **kwargs):
"""
kwargs.setdefault('stdin', VOID)
if 'stdout' in kwargs:
- raise ValueError('stdout argument not allowed, it will be overridden.')
+ raise ValueError('stdout argument not allowed, it would be overridden.')
return check_call_out(args, stdout=PIPE, **kwargs)[0]
« no previous file with comments | « git_new_branch.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698