aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-06-03 18:45:08 -0400
committerCorey Farwell <coreyf@rwell.org>2015-06-03 18:45:08 -0400
commitddc99190bbdc5c82bf0282d12d58a95796fcd0b2 (patch)
tree99a9a9a2392c59b9831b262ba916408fae97f47e /python
parent055182dae1d895ba2422e3da85c20a9a64beea71 (diff)
downloadservo-ddc99190bbdc5c82bf0282d12d58a95796fcd0b2.tar.gz
servo-ddc99190bbdc5c82bf0282d12d58a95796fcd0b2.zip
Pass release/dev arguments to command function for jQuery update
Diffstat (limited to 'python')
-rw-r--r--python/servo/testing_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index b9ce70b2d8b..2274c84c8ed 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -251,7 +251,7 @@ class MachCommands(CommandBase):
help='Run the release build')
@CommandArgument('--dev', '-d', action='store_true',
help='Run the dev build')
- def update_jquery(self):
+ def update_jquery(self, release, dev):
return self.jquery_test_runner("update", release, dev)
@Command('test-css',