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

Unified Diff: trychange.py

Issue 8261001: Add a safeguard because I always use -p 8000 by error when I mean --port 8000. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Sorry about that, this one was actually tested Created 9 years, 2 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: trychange.py
diff --git a/trychange.py b/trychange.py
index b5a98d80ce00e0dc83660c3615dd32cf3a71f5bd..1a1a51047bf82fd8f7df40e07445d4c0994ef509 100755
--- a/trychange.py
+++ b/trychange.py
@@ -656,6 +656,11 @@ def TryChange(argv,
logging.debug(argv)
+ if (options.patchlevel is not None and
+ (options.patchlevel < 0 or options.patchlevel > 10)):
+ parser.error(
+ 'Have you tried --port instead? You probably confused -p and -P.')
Dirk Pranke 2011/10/13 00:46:33 Nit: I'd probably use something like 100 instead o
M-A Ruel 2011/10/13 00:47:32 No, it's patchlevel, like patch -p1, not the numbe
+
# Strip off any @ in the user, otherwise svn gets confused.
options.user = options.user.split('@', 1)[0]
« 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