1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/101983f7d094/ Changeset: 101983f7d094 User: dan Date: 2014-11-17 17:35:15+00:00 Summary: Fix for ToolParameter.to_dict when the html contains unicode. Affected #: 1 file diff -r 0134276d67f7a70d5e7afb7e876362c557044f86 -r 101983f7d094d57ec442cf5661ba2a336eec83a6 lib/galaxy/tools/parameters/basic.py --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -195,7 +195,7 @@ tool_dict = super( ToolParameter, self ).to_dict() #TODO: wrapping html as it causes a lot of errors on subclasses - needs histories, etc. try: - tool_dict[ 'html' ] = urllib.quote( self.get_html( trans ) ) + tool_dict[ 'html' ] = urllib.quote( util.smart_str( self.get_html( trans ) ) ) except AssertionError, e: pass #HACK for assert trans.history, 'requires a history' 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.