aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorPaul Rouget <me@paulrouget.com>2018-02-07 09:59:30 +0100
committerPaul Rouget <me@paulrouget.com>2018-02-11 08:02:39 +0100
commit019fdaa1bd57c150547c02641fac621e41d0b9e2 (patch)
tree4abb317244d8d3b87dceba6a5c9120bb5765193c /python/servo/command_base.py
parent2f4362e0c1371c9ae45f1a71a406578eadc94a8b (diff)
downloadservo-019fdaa1bd57c150547c02641fac621e41d0b9e2.tar.gz
servo-019fdaa1bd57c150547c02641fac621e41d0b9e2.zip
remove bhtml
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 8cc307bfb51..ef0e7dacc3f 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -65,13 +65,6 @@ def find_dep_path_newest(package, bin_path):
return None
-def get_browserhtml_path(binary_path):
- browserhtml_path = find_dep_path_newest('browserhtml', binary_path)
- if browserhtml_path:
- return path.join(browserhtml_path, "out")
- sys.exit("Could not find browserhtml package; perhaps you haven't built Servo.")
-
-
def archive_deterministically(dir_to_archive, dest_archive, prepend_path=None):
"""Create a .tar.gz archive in a deterministic (reproducible) manner.