Skip to content

Commit

Permalink
Merge branch 'release_15.10' into release_16.01
Browse files Browse the repository at this point in the history
Conflicts:
	lib/galaxy/version.py
  • Loading branch information
nsoranzo committed Feb 18, 2016
2 parents 80a858a + 476734d commit 3f34131
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/tool_shed/util/encoding_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import logging

from galaxy.util.hash_util import hmac_new
from galaxy.util.json import json_fix

log = logging.getLogger( __name__ )

Expand All @@ -21,13 +20,8 @@ def tool_shed_decode( value ):
values = None
try:
values = json.loads( value )
except Exception, e:
except Exception:
pass
if values is not None:
try:
return json_fix( values )
except Exception, e:
log.debug( "Fixing decoded json values '%s' from tool shed threw exception: %s" % ( str( values ), str( e ) ) )
if values is None:
values = value
return values
Expand Down

0 comments on commit 3f34131

Please sign in to comment.