1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/57ffe706cc18/
Changeset: 57ffe706cc18
User: dan
Date: 2013-09-29 08:04:31
Summary: Add additional check and slice to _sniffnfix_pg9_hex(). Fixes issue seen when
attempting to view saved visualizations. Further investigation may be needed.
Affected #: 1 file
diff -r d230a516fdbcbbf6854b6360f98355168449816b -r
57ffe706cc184c630fdf957c5f93b76cb09ac94d lib/galaxy/model/custom_types.py
--- a/lib/galaxy/model/custom_types.py
+++ b/lib/galaxy/model/custom_types.py
@@ -29,6 +29,8 @@
try:
if value[0] == 'x':
return binascii.unhexlify(value[1:])
+ elif value.startswith( '\\x' ):
+ return binascii.unhexlify( value[2:] )
else:
return value
except Exception, ex:
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.