Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check
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 /commands/check
parent158bab70abfafd544eac5528761ae3eaed9218a3 (diff)
Use env in the shebangs
Also remove -u, not necessary now that we are using logs.
Diffstat (limited to 'commands/check')
-rwxr-xr-xcommands/check4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/check b/commands/check
index 0567b41..5971448 100755
--- a/commands/check
+++ b/commands/check
@@ -1,4 +1,4 @@
-#!/usr/bin/python -u
+#!/usr/bin/env python
import argparse
import os
@@ -25,7 +25,7 @@ def _get_test_path(name):
def _get_python_scripts():
- shebang = "#!/usr/bin/python"
+ shebang = "#!/usr/bin/env python"
dirs = ["commands", "tools"]
scripts = []