aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-02-15 11:08:00 +0100
committerSimon Sapin <simon.sapin@exyr.org>2017-02-15 14:55:02 +0100
commit336e6c8f286be636a105af858cac18b4d42c1b12 (patch)
tree66031bb09ee88536a93ff283f28172a3d655789f /python/servo/command_base.py
parent216a89f7766dd366c4afbeae42cf6e1fb4f67349 (diff)
downloadservo-336e6c8f286be636a105af858cac18b4d42c1b12.tar.gz
servo-336e6c8f286be636a105af858cac18b4d42c1b12.zip
Switch to commit-specific nightlies
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 3169e9c9d6a..d533fa44bb8 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -303,7 +303,7 @@ class CommandBase(object):
def rust_version(self):
if self._rust_version is None or self._use_stable_rust != self._rust_version_is_stable:
filename = path.join(self.context.topdir,
- "rust-stable-version" if self._use_stable_rust else "rust-nightly-date")
+ "rust-stable-version" if self._use_stable_rust else "rust-commit-hash")
with open(filename) as f:
self._rust_version = f.read().strip()
return self._rust_version