1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/e741400c6578/
Changeset: e741400c6578
User: james_taylor
Date: 2013-03-25 21:30:16
Summary: biostar: bugfix for encoding data
Affected #: 1 file
diff -r cf74f0879bfe111b9a6763dfaff715154d4e1693 -r
e741400c6578993c3bfe5faf184dd56518a2360a lib/galaxy/webapps/galaxy/controllers/biostar.py
--- a/lib/galaxy/webapps/galaxy/controllers/biostar.py
+++ b/lib/galaxy/webapps/galaxy/controllers/biostar.py
@@ -22,7 +22,7 @@
"""
Encode data to send a question to Biostar
"""
- text = json.dumps(data)
+ text = json.to_json_string(data)
text = base64.urlsafe_b64encode(text)
digest = hmac.new(key, text).hexdigest()
return text, digest
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.