# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User rc # Date 1280424157 14400 # Node ID 66e03194e2dae00723d446509e077a869f274922 # Parent 07e7db914c6d2090ef7579a5e2c0583af50c39f3 lims: - sample dataset size now appear correctly in the grid. The path of the datasets no longer appears with it. --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -1624,7 +1624,7 @@ class Sample( object ): output = pexpect.run(cmd, events={'.ssword:*': datatx_info['password']+'\r\n', pexpect.TIMEOUT:print_ticks}, timeout=10) - return output.split('\t')[0] + return output.replace(filepath, '').strip() class SampleState( object ): def __init__(self, name=None, desc=None, request_type=None):