aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-06-02 19:51:41 -0400
committerCorey Farwell <coreyf@rwell.org>2015-06-02 19:51:41 -0400
commite3b71c65bf77d532287d8eb6c5ed7f9468e3e1f5 (patch)
tree8e29cec3bb9cf3faf7a3657d0c4e2570aed32fa0 /python/servo/build_commands.py
parentc639a0cf4932e56425aabc826bee7cbe54061c74 (diff)
downloadservo-e3b71c65bf77d532287d8eb6c5ed7f9468e3e1f5.tar.gz
servo-e3b71c65bf77d532287d8eb6c5ed7f9468e3e1f5.zip
Fix tidy issues with Python files in python/
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 77f7d1b7a2d..a0ff559ee54 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -1,3 +1,12 @@
+# Copyright 2013 The Servo Project Developers. See the COPYRIGHT
+# file at the top-level directory of this distribution.
+#
+# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+# option. This file may not be copied, modified, or distributed
+# except according to those terms.
+
from __future__ import print_function, unicode_literals
import os
@@ -331,6 +340,6 @@ class MachCommands(CommandBase):
opts += ["--manifest-path", manifest_path]
if verbose:
opts += ["-v"]
- opts += params
+ opts += params
return subprocess.call(["cargo", "clean"] + opts,
env=self.build_env(), cwd=self.servo_crate())