aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authormarmeladema <xademax@gmail.com>2019-12-10 23:56:12 +0000
committermarmeladema <xademax@gmail.com>2019-12-11 16:03:20 +0000
commit7b5fabe8552b9245a70961db9ec592a55102bb0e (patch)
treeb31bc428ddabb8dfeaabafaff504f4db7e937401 /python/servo/build_commands.py
parent9d04f231f4a32050d78221d4e13d4951df649269 (diff)
downloadservo-7b5fabe8552b9245a70961db9ec592a55102bb0e.tar.gz
servo-7b5fabe8552b9245a70961db9ec592a55102bb0e.zip
Fix tidiness errors for Python3 compatibility across whole repo
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 2cb269eed69..1a2f4c420c6 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -635,7 +635,7 @@ class MachCommands(CommandBase):
opts = ["-Ztimings=info"] + opts
if very_verbose:
- print (["Calling", "cargo", "build"] + opts)
+ print(["Calling", "cargo", "build"] + opts)
for key in env:
print((key, env[key]))