commit/galaxy-central: natefoo: Don't use 'python -ES' when scrambling eggs due to '-S' breaking virtualenv.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/2c9ce797953d/ changeset: r5096:2c9ce797953d user: natefoo date: 2011-02-21 15:46:54 summary: Don't use 'python -ES' when scrambling eggs due to '-S' breaking virtualenv. affected #: 1 file (4 bytes) --- a/lib/galaxy/eggs/scramble.py Fri Feb 18 17:47:07 2011 -0500 +++ b/lib/galaxy/eggs/scramble.py Mon Feb 21 09:46:54 2011 -0500 @@ -193,7 +193,7 @@ def run_scramble_script( self ): log.warning( "%s(): Beginning build" % sys._getframe().f_code.co_name ) # subprocessed to sterilize the env - cmd = "%s -ES %s" % ( self.python, "scramble.py" ) + cmd = "%s %s" % ( self.python, "scramble.py" ) log.debug( '%s(): Executing in %s:' % ( sys._getframe().f_code.co_name, self.buildpath ) ) log.debug( ' %s' % cmd ) p = subprocess.Popen( args = cmd, shell = True, cwd = self.buildpath ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket