On Thu, 21 Jan 2010, Nate Coraor wrote:
Kaizaad Bilimorya wrote:
Hi Nate
I just downloaded it this morning via: hg clone http://www.bx.psu.edu/hg/galaxy galaxy_dist
Here is what the id shows: $ hg id 56efe838b9af tip
thanks -k
Hmm, check_python.py really shouldn't be returning 1 there. You could put a 'raise' after the except line in that file and see what it's throwing.
I hope to do away with both -E and -S in the near future, so we won't even need this check anymore.
--nate
I think I put it in the right place since it seemed to work, I can get through the setup now. Thanks! -k --- check_python.py.orig 2010-01-20 14:06:07.000000000 -0500 +++ check_python.py 2010-01-21 09:52:23.000000000 -0500 @@ -26,4 +26,5 @@ print check_virtualenv() sys.exit( 0 ) except Exception: + raise sys.exit( 1 )