1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/733696644b89/ Changeset: 733696644b89 User: nsoranzo Date: 2014-12-15 15:43:16+00:00 Summary: Fix variable name causing a NameError. Affected #: 1 file diff -r 3c0acd32969bc282603607037522a2e16d70d074 -r 733696644b89ba39bbeeaf5908b97f4698d6868c lib/galaxy/managers/folders.py --- a/lib/galaxy/managers/folders.py +++ b/lib/galaxy/managers/folders.py @@ -195,7 +195,7 @@ if ( ( len( encoded_folder_id ) % 16 == 1 ) and encoded_folder_id.startswith( 'F' ) ): cut_id = encoded_folder_id[ 1: ] else: - raise exceptions.MalformedId( 'Malformed folder id ( %s ) specified, unable to decode.' % str( encoded_id ) ) + raise exceptions.MalformedId( 'Malformed folder id ( %s ) specified, unable to decode.' % str( encoded_folder_id ) ) return cut_id def decode_folder_id( self, trans, encoded_folder_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.