1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/ba5c95886cef/ changeset: ba5c95886cef user: greg date: 2011-09-06 16:44:44 summary: Fix for browsing tool shed repo files whose names include apsces, and display a better message if repository metadata cannot be set due to lack of tools. affected #: 2 files (197 bytes) --- a/lib/galaxy/webapps/community/controllers/common.py Tue Sep 06 09:43:17 2011 -0400 +++ b/lib/galaxy/webapps/community/controllers/common.py Tue Sep 06 10:44:44 2011 -0400 @@ -295,6 +295,9 @@ repository_metadata.metadata = metadata_dict trans.sa_session.add( repository_metadata ) trans.sa_session.flush() + else: + message = "Changeset revision '%s' includes no tools or exported workflows for which metadata can be set." % str( changeset_revision ) + status = "done" else: # change_set is None message = "Repository does not include changeset revision '%s'." % str( changeset_revision ) --- a/lib/galaxy/webapps/community/controllers/repository.py Tue Sep 06 09:43:17 2011 -0400 +++ b/lib/galaxy/webapps/community/controllers/repository.py Tue Sep 06 10:44:44 2011 -0400 @@ -1396,7 +1396,7 @@ changeset_revision=repository.tip, status=status, message=message ) ) - return output.split() + return output.split( '\r\n' ) @web.json def get_file_contents( self, trans, file_path ): # Avoid caching 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.