commit/galaxy-central: greg: Fix for setting repository metadata.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/8695c3c1485c/ changeset: 8695c3c1485c user: greg date: 2011-08-05 22:40:29 summary: Fix for setting repository metadata. affected #: 1 file (53 bytes) --- a/lib/galaxy/webapps/community/controllers/common.py Fri Aug 05 16:22:23 2011 -0400 +++ b/lib/galaxy/webapps/community/controllers/common.py Fri Aug 05 16:40:29 2011 -0400 @@ -220,7 +220,8 @@ try: full_path = os.path.abspath( os.path.join( root, name ) ) tool = load_tool( trans, full_path ) - flush_needed, metadata_dict = set_tool_metadata( trans, id, change_set_revision, root, name, tool, metadata_dict ) + if tool is not None: + flush_needed, metadata_dict = set_tool_metadata( trans, id, change_set_revision, root, name, tool, metadata_dict ) except Exception, e: invalid_files.append( ( name, str( e ) ) ) # Find all exported workflows 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