diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-12-21 21:34:51 +0000 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-12-21 21:34:51 +0000 |
| commit | db938f975da64540ebb942e9dfd640db4dd7f939 (patch) | |
| tree | 2eebe133ec54790c6659162355233607059448a0 /nova | |
| parent | 1f7103964045a5433fa8b3580ed492d9d34acd0c (diff) | |
| download | nova-db938f975da64540ebb942e9dfd640db4dd7f939.tar.gz nova-db938f975da64540ebb942e9dfd640db4dd7f939.tar.xz nova-db938f975da64540ebb942e9dfd640db4dd7f939.zip | |
removed unused import and fix docstring
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/ec2/cloud.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py index ad6debb11..c845e6a2e 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -27,7 +27,6 @@ import datetime import logging import re import os -import time from nova import context import IPy @@ -706,7 +705,7 @@ class CloudController(object): def release_address(self, context, public_ip, **kwargs): floating_ip_ref = db.floating_ip_get_by_address(context, public_ip) # NOTE(vish): We don't know which network host should get the ip - # when we allocate, so just send it to any one. This + # when we deallocate, so just send it to any one. This # will probably need to move into a network supervisor # at some point. rpc.cast(context, |
