aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-02-24 06:54:46 -0700
committerbors-servo <metajack+bors@gmail.com>2015-02-24 06:54:46 -0700
commit337433cde572099ff2975fd5cade49a9b79911d2 (patch)
tree251033a8c4eeec16b37c69a3769cdc3389ffb9bd /python
parenta3ea3eed47713a4a6faa86c575bc2ac95c5fe135 (diff)
parent322bf23db8c82c71d916ccd14dbc0914ce9e229c (diff)
downloadservo-337433cde572099ff2975fd5cade49a9b79911d2.tar.gz
servo-337433cde572099ff2975fd5cade49a9b79911d2.zip
auto merge of #5049 : servo/servo/Ms2ger-patch-1, r=Manishearth
This fixes a regression from 894e58f714de0f3d65aeb943dbf8f569feb8c1d6.
Diffstat (limited to 'python')
-rw-r--r--python/servo/post_build_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py
index bfa679a795e..b28ef968091 100644
--- a/python/servo/post_build_commands.py
+++ b/python/servo/post_build_commands.py
@@ -56,7 +56,7 @@ class MachCommands(CommandBase):
env = self.build_env()
env["RUST_BACKTRACE"] = "1"
- args = self.get_binary_path(release)
+ args = [self.get_binary_path(release)]
# Borrowed and modified from:
# http://hg.mozilla.org/mozilla-central/file/c9cfa9b91dea/python/mozbuild/mozbuild/mach_commands.py#l883