[hg] galaxy 3409: Fix for bug introduced in change set 3386:8d9c...

details: http://www.bx.psu.edu/hg/galaxy/rev/a8b176655f0b changeset: 3409:a8b176655f0b user: Greg Von Kuster <greg@bx.psu.edu> date: Wed Feb 17 15:50:38 2010 -0500 description: Fix for bug introduced in change set 3386:8d9c8cf65dee when downloading datasets from a library. diffstat: lib/galaxy/web/controllers/library_common.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diffs (13 lines): diff -r 6471c9b8149c -r a8b176655f0b lib/galaxy/web/controllers/library_common.py --- a/lib/galaxy/web/controllers/library_common.py Wed Feb 17 14:49:13 2010 -0500 +++ b/lib/galaxy/web/controllers/library_common.py Wed Feb 17 15:50:38 2010 -0500 @@ -1274,8 +1274,7 @@ or ldda.dataset.state in [ 'new', 'upload', 'queued', 'running', 'empty', 'discarded' ]: continue ext = ldda.extension - if ext in composite_extensions: - is_composite = True + is_composite = ext in composite_extensions path = "" parent_folder = ldda.library_dataset.folder while parent_folder is not None:
participants (1)
-
Greg Von Kuster