Index: gclient.py |
diff --git a/gclient.py b/gclient.py |
index 243fb59a668de5c953896b6ed0645d9212be0bc0..a9b14bf9ac4981bbf8a8fe0fd8a7b9af1bfa201e 100644 |
--- a/gclient.py |
+++ b/gclient.py |
@@ -930,12 +930,6 @@ solutions = [ |
# Support for --revision 123 |
revision = '%s@%s' % (solutions_names[index], revision) |
sol, rev = revision.split('@', 1) |
- |
- if not sol in solutions_names and sol == 'trunk': |
- print >> sys.stderr, 'Rewriting "trunk" to "src" in --revision' |
- # Fix attempt for http://crbug.com/108515 |
- sol = 'src' |
- |
if not sol in solutions_names: |
#raise gclient_utils.Error('%s is not a valid solution.' % sol) |
print >> sys.stderr, ('Please fix your script, having invalid ' |