
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/bec1baa9d2db/ Changeset: bec1baa9d2db User: dannon Date: 2013-08-29 18:21:50 Summary: Irods get_data was using wrong varname for reading(count) Affected #: 1 file diff -r 444c5b5b451b50eacba3ba1d08d83e16c1027fa5 -r bec1baa9d2db009abd16778093fb15b96bde0950 lib/galaxy/objectstore/rods.py --- a/lib/galaxy/objectstore/rods.py +++ b/lib/galaxy/objectstore/rods.py @@ -210,7 +210,7 @@ if count == -1: return h.read() else: - return f.read( count ) + return h.read( count ) # TODO: make sure implicit close is okay, DiskObjectStore actually # reads data into a var, closes, and returns the var 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.