summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen West <bewest@gmail.com>2015-05-14 19:49:16 -0700
committerBen West <bewest@gmail.com>2015-05-14 19:49:16 -0700
commita719be3f4dffc11d266bbf03309f3ea6eb23ac88 (patch)
tree8b616be891e91badc3e9f555d561399fa9a14518
parent70fe25cf8ce9ee6917edbdff35e045ea02e84ec6 (diff)
fix accidental spelling
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 798e99f..10a729d 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ def is_virtualenv ( ):
10 proc = subprocess.Popen(['which', 'add2virtualenv'], stderr=subprocess.PIPE, stdout=subprocess.PIPE) 10 proc = subprocess.Popen(['which', 'add2virtualenv'], stderr=subprocess.PIPE, stdout=subprocess.PIPE)
11 shell = os.path.dirname(sys.argv[0]) 11 shell = os.path.dirname(sys.argv[0])
12 has_venv = proc.poll( ) == 0 12 has_venv = proc.poll( ) == 0
13 print "shell root shares project root", shell, os.path.dirname(__filename__) 13 print "shell root shares project root", shell, os.path.dirname(__file__)
14 print 'huh', sys.argv, has_venv, os.environ, __file__ 14 print 'huh', sys.argv, has_venv, os.environ, __file__
15 print 'real_prefix', getattr(sys, 'real_prefix', '??') 15 print 'real_prefix', getattr(sys, 'real_prefix', '??')
16 print "RESULT", proc.poll( ), has_venv, os.environ.get('VIRTUAL_ENV') 16 print "RESULT", proc.poll( ), has_venv, os.environ.get('VIRTUAL_ENV')