From f8003dab46f1c7ff0e1353cf128e11ef1cae7826 Mon Sep 17 00:00:00 2001 From: Armen Zambrano Gasparnian Date: Thu, 1 Aug 2013 09:19:40 -0400 Subject: [PATCH] Bug 900189 - Insert mozharness to the front of sys.path in talos's mach_command.py. NPOTB. DONTBUILD. r=gps --- testing/talos/mach_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/talos/mach_commands.py b/testing/talos/mach_commands.py index 6cc389383d11..2b88c452f7ff 100644 --- a/testing/talos/mach_commands.py +++ b/testing/talos/mach_commands.py @@ -117,7 +117,7 @@ class TalosRunner(MozbuildObject): raise e def run_mozharness(self): - sys.path.append(self.mozharness_dir) + sys.path.insert(0, self.mozharness_dir) from mozharness.mozilla.testing.talos import Talos talos_mh = Talos(config=self.args['config'], initial_config_file=self.args['initial_config_file'])