From c37633ef079a3229df14e5bffacd6fb2f3896809 Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Tue, 17 Jul 2012 11:57:37 -0400 Subject: Fix docstring for SecurityGroupHandlerBase Change-Id: I645a03cd1a80dc34a7b5a2e91072604e5156d51d --- nova/network/quantum/sg.py | 4 ++-- 1 file 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.''' -- cgit