summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-07-26 01:51:03 +0000
committerGerrit Code Review <review@openstack.org>2012-07-26 01:51:03 +0000
commit868bbaf52e82cb4810836b49fab2749845ce486b (patch)
treef8f837c2cfdc994a1b007b557a9c82448875d2d7
parentf0f9a3e4e731e49e220b1bd515f9174c791e5a28 (diff)
parentc37633ef079a3229df14e5bffacd6fb2f3896809 (diff)
Merge "Fix docstring for SecurityGroupHandlerBase"
-rw-r--r--nova/network/quantum/sg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/network/quantum/sg.py b/nova/network/quantum/sg.py
index 7f41a9983..aad9f1052 100644
--- a/nova/network/quantum/sg.py
+++ b/nova/network/quantum/sg.py
@@ -39,7 +39,7 @@ class SecurityGroupHandlerBase(object):
raise NotImplementedError()
def trigger_security_group_create_refresh(self, context, group):
- '''Called when a rule is added to a security_group.
+ '''Called when a security group is created
:param context: the security context.
:param group: the new group added. group is a dictionary that contains
@@ -48,7 +48,7 @@ class SecurityGroupHandlerBase(object):
def trigger_security_group_destroy_refresh(self, context,
security_group_id):
- '''Called when a rule is added to a security_group.
+ '''Called when a security group is deleted
:param context: the security context.
:param security_group_id: the security group identifier.'''