1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/e9d3248c6fc3/ Changeset: e9d3248c6fc3 User: dan Date: 2014-02-18 21:09:46 Summary: Fix for server error caused by unicode substitution in url_for. Affected #: 1 file diff -r 26e37f6af3a8a090d9d6e923fa3e90acb0e64572 -r e9d3248c6fc312f8c7671a8e1233265c4ff0a0b1 templates/webapps/galaxy/mobile/history/detail.mako --- a/templates/webapps/galaxy/mobile/history/detail.mako +++ b/templates/webapps/galaxy/mobile/history/detail.mako @@ -12,7 +12,7 @@ if data.state in ['no state','',None]: data_state = "queued" else: - data_state = data.state + data_state = str( data.state ) %><li id="historyItemContainer-${data.id}"> 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.