diff options
author | Todd Willey <todd@ansolabs.com> | 2011-01-18 02:05:07 -0500 |
---|---|---|
committer | Todd Willey <todd@ansolabs.com> | 2011-01-18 02:05:07 -0500 |
commit | 11a10dc9a2fcaaf94e9c661fc9162fd5b8bd420e (patch) | |
tree | a8abce06473f1fee7df40197e1b8c8111bc75aba | |
parent | 4243440af10f3d682d255f7283618361a6e94d57 (diff) | |
download | nova-11a10dc9a2fcaaf94e9c661fc9162fd5b8bd420e.tar.gz nova-11a10dc9a2fcaaf94e9c661fc9162fd5b8bd420e.tar.xz nova-11a10dc9a2fcaaf94e9c661fc9162fd5b8bd420e.zip |
pep8
-rw-r--r-- | nova/virt/fake.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nova/virt/fake.py b/nova/virt/fake.py index 4eb42ab85..f8b3c7807 100644 --- a/nova/virt/fake.py +++ b/nova/virt/fake.py @@ -318,7 +318,7 @@ class FakeConnection(object): running the specified security group. An error should be raised if the operation cannot complete. - + """ return True @@ -328,7 +328,7 @@ class FakeConnection(object): This message is sent to the virtualization drivers on hosts that are running an instance that belongs to a security group that has a rule that references the security group identified by `security_group_id`. - It is the responsiblity of this method to make sure any rules + It is the responsiblity of this method to make sure any rules that authorize traffic flow with members of the security group are updated and any new members can communicate, and any removed members cannot. @@ -354,10 +354,11 @@ class FakeConnection(object): are made to authorizing those instances. An error should be raised if the operation cannot complete. - + """ return True + class FakeInstance(object): def __init__(self): |