1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/fc799502f7a6/ Changeset: fc799502f7a6 Branch: next-stable User: nsoranzo Date: 2014-12-15 15:43:16+00:00 Summary: Fix variable name causing a NameError. Affected #: 1 file diff -r 6704c0ee9fec6b0624d739669cb7c66ea08d480a -r fc799502f7a6310f19230f58f11ab1fbe82b09ba 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.