[tor-commits] [chutney/master] Don't break PYTHONPATHs with spaces
nickm at torproject.org
nickm at torproject.org
Tue Aug 19 14:37:36 UTC 2014
commit 2c25d7cf66dc59873677031a97d9a1a24a3524cd
Author: Daniel Martà <mvdan at mvdan.cc>
Date: Fri Aug 15 14:18:32 2014 +0200
Don't break PYTHONPATHs with spaces
---
chutney | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/chutney b/chutney
index 344118d..ade7b6e 100755
--- a/chutney
+++ b/chutney
@@ -1,6 +1,4 @@
#!/bin/sh
-
-PYTHONPATH="`dirname $0`/lib":${PYTHONPATH}
-export PYTHONPATH
+export PYTHONPATH="`dirname $0`/lib:${PYTHONPATH}"
${PYTHON:=python} -m chutney.TorNet $*
More information about the tor-commits
mailing list