diff options
| author | Eric Day <eday@oddments.org> | 2010-09-23 11:21:14 -0700 |
|---|---|---|
| committer | Eric Day <eday@oddments.org> | 2010-09-23 11:21:14 -0700 |
| commit | c9ac49b2425b932f60a87da80887d4556806ca60 (patch) | |
| tree | 6be7414465064ad2af95ac84c80e7ba636fbcfd2 /nova/cloudpipe | |
| parent | 54122c0a156d1562be76dfde41bd62006f9ed426 (diff) | |
Fixed cloudpipe lib init.
Diffstat (limited to 'nova/cloudpipe')
| -rw-r--r-- | nova/cloudpipe/pipelib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/cloudpipe/pipelib.py b/nova/cloudpipe/pipelib.py index abc14bbb6..706a175d9 100644 --- a/nova/cloudpipe/pipelib.py +++ b/nova/cloudpipe/pipelib.py @@ -32,6 +32,7 @@ from nova import exception from nova import flags from nova import utils from nova.auth import manager +# TODO(eday): Eventually changes these to something not ec2-specific from nova.api.ec2 import cloud from nova.api.ec2 import context @@ -43,7 +44,7 @@ flags.DEFINE_string('boot_script_template', class CloudPipe(object): - def __init__(self, cloud_controller): + def __init__(self): self.controller = cloud.CloudController() self.manager = manager.AuthManager() |
