From 1b4d182145464f2bab86ac960a8e508a1fd0ea94 Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Thu, 12 Sep 2019 14:09:23 +0000 Subject: [PATCH] Bug 1567642 - [mozharness] Fix missed print statement in 'test_base_script.py', r=Callek Differential Revision: https://phabricator.services.mozilla.com/D45666 --HG-- extra : moz-landing-system : lando --- testing/mozharness/test/test_base_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/mozharness/test/test_base_script.py b/testing/mozharness/test/test_base_script.py index d1432135065f..708d4f2f179e 100644 --- a/testing/mozharness/test/test_base_script.py +++ b/testing/mozharness/test/test_base_script.py @@ -56,7 +56,7 @@ def get_debug_script_obj(): def _post_fatal(self, **kwargs): fh = open('tmpfile_stdout', 'w') - print >>fh, test_string + print(test_string, file=fh) fh.close()