commit/galaxy-central: dan: Minor fix for 5283:41a416e61021.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/3844b6d684b6/ changeset: r5286:3844b6d684b6 user: dan date: 2011-03-30 16:40:09 summary: Minor fix for 5283:41a416e61021. affected #: 1 file (4 bytes) --- a/lib/galaxy/datatypes/data.py Wed Mar 30 10:38:45 2011 -0400 +++ b/lib/galaxy/datatypes/data.py Wed Mar 30 10:40:09 2011 -0400 @@ -441,7 +441,7 @@ est_lines = self.estimate_file_lines(dataset) dataset.blurb = "~%s %s" % ( util.commaify(util.roundify(str(est_lines))), inflector.cond_plural(est_lines, self.line_class) ) else: - dataset.blurb = "%s %s" % util.commaify( str(line_count) ), inflector.cond_plural(line_count, self.line_class) + dataset.blurb = "%s %s" % ( util.commaify( str(line_count) ), inflector.cond_plural(line_count, self.line_class) ) else: dataset.peek = 'file does not exist' dataset.blurb = 'file purged from disk' 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