From d424f48a08f1ae4ffc2b85e8dcccd4065ed2c5cc Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Sun, 06 Jan 2013 00:18:53 +0000 Subject: Use env in the shebangs Also remove -u, not necessary now that we are using logs. --- (limited to 'devbot') diff --git a/devbot/run.py b/devbot/run.py index 65eee8c..9da5873 100644 --- a/devbot/run.py +++ b/devbot/run.py @@ -51,7 +51,7 @@ def run_test(test_cmd, test_path): os.rmdir(temp_dir) try: - command.run(["python", "-u", test_path]) + command.run(["python", test_path]) result = True except subprocess.CalledProcessError: result = False -- cgit v0.9.1