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

Unified Diff: dart/frog/scripts/bootstrap/frog_wrapper.py

Issue 8965039: Fix bug in frog_wrapper.py that caused it to eat the first argument (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | « no previous file | dart/tools/testing/architecture.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/scripts/bootstrap/frog_wrapper.py
diff --git a/dart/frog/scripts/bootstrap/frog_wrapper.py b/dart/frog/scripts/bootstrap/frog_wrapper.py
index 92aadee3629354aa5e0c7e3bb3bbe339db2083f0..f7efbfac240e1583ccbcd0d2d320ea99201f8bf3 100644
--- a/dart/frog/scripts/bootstrap/frog_wrapper.py
+++ b/dart/frog/scripts/bootstrap/frog_wrapper.py
@@ -18,7 +18,7 @@ def main(args):
return 1
frog_args = ['frog.py', '--vm=' + VM, '--']
- frog_args += args[2:len(args)]
+ frog_args += args[1:]
filename = None
exit_code = 1
« no previous file with comments | « no previous file | dart/tools/testing/architecture.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698