commit/galaxy-central: dan: Fix for server error caused by unicode substitution in url_for.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/1480f00e6bdc/ Changeset: 1480f00e6bdc Branch: stable 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 15e8a74a95215bf2cc775e9848ca4a5ecc7e945f -r 1480f00e6bdcebe043b695fa1daaa0220fc0c086 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.
participants (1)
-
commits-noreply@bitbucket.org