diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-07-29 16:52:08 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-07-29 16:52:08 -0700 |
| commit | 4cf1001fa37c00daea40e9f68be7c95ab0e41e4d (patch) | |
| tree | 1497fcc8ad86ebef8f3849c6f3292452348d3f8a | |
| parent | 73a47dfecf4b1ba66a45421bbd925f3e0db054c5 (diff) | |
| download | nova-4cf1001fa37c00daea40e9f68be7c95ab0e41e4d.tar.gz nova-4cf1001fa37c00daea40e9f68be7c95ab0e41e4d.tar.xz nova-4cf1001fa37c00daea40e9f68be7c95ab0e41e4d.zip | |
fix imports in endpoint/images.py boto.s3 no longer imports connection, so we need to explicitly import it.
| -rw-r--r-- | nova/endpoint/images.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nova/endpoint/images.py b/nova/endpoint/images.py index 12876da30..32f7cc228 100644 --- a/nova/endpoint/images.py +++ b/nova/endpoint/images.py @@ -21,10 +21,8 @@ Proxy AMI-related calls from the cloud controller, to the running objectstore daemon. """ -import boto -import boto.s3 +import boto.s3.connection import json -import random import urllib from nova import flags |
