1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/271ccd09bc23/ changeset: 271ccd09bc23 user: greg date: 2012-02-07 17:06:17 summary: Fix for 39e03997f78f - change buffer to string so older postgres versions work. affected #: 1 file diff -r 39e03997f78f7dcea23915cffe5f924e7b6bd957 -r 271ccd09bc2367c7e20d59afb0a7307d4016a1f5 lib/galaxy/model/migrate/versions/0091_add_tool_version_tables.py --- a/lib/galaxy/model/migrate/versions/0091_add_tool_version_tables.py +++ b/lib/galaxy/model/migrate/versions/0091_add_tool_version_tables.py @@ -76,7 +76,7 @@ for row in result: if row[1]: tool_shed_repository_id = row[0] - repository_metadata = from_json_string( _sniffnfix_pg9_hex( row[1] ) ) + repository_metadata = from_json_string( _sniffnfix_pg9_hex( str( row[1] ) ) ) # Create a new row in the tool table for each tool included in repository. We will NOT # handle tool_version_associaions because we do not have the information we need to do so. tools = repository_metadata.get( 'tools', [] ) 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.