diff --git a/lib/galaxy/managers/cloud.py b/lib/galaxy/managers/cloud.py index 980ebe2a5a54..304830396e19 100644 --- a/lib/galaxy/managers/cloud.py +++ b/lib/galaxy/managers/cloud.py @@ -13,7 +13,7 @@ try: from cloudbridge.cloud.factory import CloudProviderFactory, ProviderList - from cloudbridge.cloud.interfaces.exceptions import * + from cloudbridge.cloud.interfaces.exceptions import ProviderConnectionException except ImportError: CloudProviderFactory = None ProviderList = None @@ -81,7 +81,6 @@ def _configure_provider(self, provider, credentials): except ProviderConnectionException as e: return "400", "Could not authenticate to the '{}' provider. {}".format(provider, e), None - def download(self, trans, history_id, provider, container, obj, credentials): if CloudProviderFactory is None: raise Exception(NO_CLOUDBRIDGE_ERROR_MESSAGE)