1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/802ae59b9f7b/
changeset: 802ae59b9f7b
user: greg
date: 2011-09-27 15:55:52
summary: Fix for finding versions of tools within repository changesets in the tool
shed.
affected #: 1 file (-1 bytes)
--- a/lib/galaxy/webapps/community/controllers/repository.py Tue Sep 27 14:37:17 2011
+1000
+++ b/lib/galaxy/webapps/community/controllers/repository.py Tue Sep 27 09:55:52 2011
-0400
@@ -1132,7 +1132,8 @@
ctx = get_changectx_for_changeset( trans, repo, changeset_revision )
fctx = None
for filename in ctx:
- if filename == old_tool_config_file_name:
+ filename_head, filename_tail = os.path.split( filename )
+ if filename_tail == old_tool_config_file_name:
fctx = ctx[ filename ]
break
if fctx:
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.