Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-06 00:18:53 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-06 00:18:53 (GMT)
commitd424f48a08f1ae4ffc2b85e8dcccd4065ed2c5cc (patch)
treea0dbc5fe7e7476c2837be112d40153c477fc2040 /devbot
parent158bab70abfafd544eac5528761ae3eaed9218a3 (diff)
Use env in the shebangs
Also remove -u, not necessary now that we are using logs.
Diffstat (limited to 'devbot')
-rw-r--r--devbot/run.py2
1 files changed, 1 insertions, 1 deletions
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