1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/96fb46cedf21/ changeset: 96fb46cedf21 user: natefoo date: 2012-04-16 16:07:10 summary: Fix for cleanup_datasets.py when database_connection is the uncommented default in the config file. affected #: 1 file diff -r 1fdcce63a06fa62ef5789967d929dc78d46c3eb4 -r 96fb46cedf2120cd7c2e873985939c92392d40c2 scripts/cleanup_datasets/cleanup_datasets.py --- a/scripts/cleanup_datasets/cleanup_datasets.py +++ b/scripts/cleanup_datasets/cleanup_datasets.py @@ -505,7 +505,7 @@ class CleanupDatasetsApplication( object ): """Encapsulates the state of a Universe application""" def __init__( self, config ): - if config.database_connection is None: + if config.database_connection is False: config.database_connection = "sqlite:///%s?isolation_level=IMMEDIATE" % config.database self.object_store = build_object_store_from_config( config ) # Setup the database engine and ORM 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.