Browse Source

Allow environment variable PYTHON to override default

Nick Mathewson 14 years ago
parent
commit
8d0a1dba99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      chutney

+ 1 - 1
chutney

@@ -3,4 +3,4 @@
 
 PYTHONPATH="`dirname $0`/lib":${PYTHONPATH}
 export PYTHONPATH
-python -m chutney.TorNet $*
+${PYTHON:=python} -m chutney.TorNet $*