1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/a4b650a24111/ Changeset: a4b650a24111 User: davebgx Date: 2014-04-01 20:48:48 Summary: Remove escaped double quotes from setup_virtualenv action. Affected #: 1 file
diff -r 6ecb313956184d2d78f503ee918618d218ed9791 -r a4b650a241111683b15386c4fba5f892b97a27a5 lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py @@ -837,7 +837,7 @@ return tool_dependency # Use raw strings so that python won't automatically unescape the quotes before passing the command # to subprocess.Popen. - site_packages_command = r"%s -c 'import os, sys; print os.path.join(sys.prefix, "lib", "python" + sys.version[:3], "site-packages")'" % os.path.join( venv_directory, "bin", "python" ) + site_packages_command = r"""%s -c 'import os, sys; print os.path.join(sys.prefix, "lib", "python" + sys.version[:3], "site-packages")'""" % os.path.join( venv_directory, "bin", "python" ) output = handle_command( app, tool_dependency, install_dir, site_packages_command, return_output=True ) if output.return_code: return tool_dependency
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.
galaxy-commits@lists.galaxyproject.org