1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4a33c32fe1a5/ Changeset: 4a33c32fe1a5 User: Dave Bouvier Date: 2013-06-27 16:17:04 Summary: Fix path issue that was introduced with the refactoring of common_util.url_download. Affected #: 1 file diff -r 3fa9df444b4b81f94b1c42a033c685a6e23827be -r 4a33c32fe1a5b33f98fd1b5d9292588cbe82b6be lib/tool_shed/galaxy_install/tool_dependencies/common_util.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/common_util.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/common_util.py @@ -248,9 +248,9 @@ zip_archive_extracted = extract_zip( file_path, install_dir ) dir = zip_extraction_directory( install_dir, downloaded_file_name ) else: - dir = install_dir + dir = os.path.abspath( install_dir ) else: - dir = install_dir + dir = os.path.abspath( install_dir ) return dir def zip_extraction_directory( file_path, file_name ): 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.