commit/galaxy-central: kanwei: Fix data.py typo. Fixes #543
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/d2ba41bec611/ changeset: r5578:d2ba41bec611 user: kanwei date: 2011-05-18 00:41:12 summary: Fix data.py typo. Fixes #543 affected #: 1 file (1 byte) --- a/lib/galaxy/datatypes/data.py Tue May 17 13:14:15 2011 -0400 +++ b/lib/galaxy/datatypes/data.py Tue May 17 18:41:12 2011 -0400 @@ -84,7 +84,7 @@ def get_raw_data( self, dataset ): """Returns the full data. To stream it open the file_name and read/write as needed""" try: - return file(datset.file_name, 'rb').read(-1) + return file(dataset.file_name, 'rb').read(-1) except OSError, e: log.exception('%s reading a file that does not exist %s' % (self.__class__.__name__, dataset.file_name)) return '' 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.
participants (1)
-
Bitbucket