diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2014-12-03 15:59:51 -0800 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2014-12-03 15:59:51 -0800 |
commit | 2b7eb1ca1efb9efd3972c4c48392f09d59e594c7 (patch) | |
tree | f30ef80fbc786e44a879efeee10e69b3a4df0ab0 /python | |
parent | 7efad39ccd98dcdde8b81827d6e44c9deb310e36 (diff) | |
download | servo-2b7eb1ca1efb9efd3972c4c48392f09d59e594c7.tar.gz servo-2b7eb1ca1efb9efd3972c4c48392f09d59e594c7.zip |
Fix 'mach browse-doc' to use the right target directory.
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 8fdc33eb116..ee9987358ba 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -110,4 +110,4 @@ class MachCommands(CommandBase): self.doc([]) import webbrowser webbrowser.open("file://" + path.abspath(path.join( - "target", "doc", "servo", "index.html"))) + self.servo_crate(), "target", "doc", "servo", "index.html"))) |