From 031a20df74ebce04e5b14af94c72a255afe05504 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 22 Mar 2016 17:06:57 +0100 Subject: [PATCH] Remove unused use_nightly_rust function. --- python/servo/command_base.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 0c3fddce84f..9efad3a19c2 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -59,11 +59,6 @@ def host_triple(): return "%s-%s" % (cpu_type, os_type) -def use_nightly_rust(): - envvar = os.environ.get("SERVO_USE_NIGHTLY_RUST", "0") - return envvar != "0" - - def call(*args, **kwargs): """Wrap `subprocess.call`, printing the command if verbose=True.""" verbose = kwargs.pop('verbose', False)