diff --git a/datatypes_conf.xml.sample b/datatypes_conf.xml.sample
index b27c14128a1..c330d394209 100644
--- a/datatypes_conf.xml.sample
+++ b/datatypes_conf.xml.sample
@@ -194,7 +194,6 @@
-
diff --git a/lib/galaxy/web/controllers/library_common.py b/lib/galaxy/web/controllers/library_common.py
index 38708806cef..a980fc7ac32 100644
--- a/lib/galaxy/web/controllers/library_common.py
+++ b/lib/galaxy/web/controllers/library_common.py
@@ -1111,7 +1111,7 @@ class LibraryCommon( BaseController ):
# is composite - must return a zip of contents and the html file itself - ugh - should be reversible at upload!
# use act_on_multiple_datasets( self, trans, cntrller, library_id, ldda_ids='', **kwd ) since it does what we need
kwd['do_action'] = 'zip'
- return self.act_on_multiple_datasets( trans, cntrller, library_id, ldda_ids=id, **kwd )
+ return self.act_on_multiple_datasets( trans, cntrller, library_id, ldda_ids=[id,], **kwd )
else:
mime = trans.app.datatypes_registry.get_mimetype_by_extension( ldda.extension.lower() )
trans.response.set_content_type( mime )
@@ -1258,6 +1258,7 @@ class LibraryCommon( BaseController ):
messagetype = 'error'
else:
ldda_ids = util.listify( ldda_ids )
+ log.debug('## act on multiple got %s' % ldda_ids)
if action == 'import_to_history':
history = trans.get_history()
if history is None:
diff --git a/run_functional_tests.sh b/run_functional_tests.sh
index 4a9b367a058..a3928371835 100755
--- a/run_functional_tests.sh
+++ b/run_functional_tests.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# A good place to look for nose info: http://somethingaboutorange.com/mrl/projects/nose/
-
+export PATH=/usr/local/bin:$PATH
rm -f run_functional_tests.log
if [ ! $1 ]; then