commit/galaxy-central: natefoo: Have the cloud controller explicitly require boto.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/a01497f68018/ changeset: a01497f68018 user: natefoo date: 2012-03-28 16:02:55 summary: Have the cloud controller explicitly require boto. affected #: 1 file diff -r 377dd3efe3beb7f8d8ef06306fcadac0aafd6365 -r a01497f68018ccc78b2a987b8514bae0e8cf70f1 lib/galaxy/web/controllers/cloud.py --- a/lib/galaxy/web/controllers/cloud.py +++ b/lib/galaxy/web/controllers/cloud.py @@ -6,10 +6,13 @@ """ -import boto import datetime import logging import time +from galaxy import eggs +import pkg_resources +pkg_resources.require('boto') +import boto from galaxy import web from galaxy.web.base.controller import BaseUIController from boto.ec2.regioninfo import RegionInfo 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.
participants (1)
-
Bitbucket