diff options
| author | Sean M. Collins <sean@coreitpro.com> | 2012-07-17 11:57:37 -0400 |
|---|---|---|
| committer | Sean M. Collins <sean@coreitpro.com> | 2012-07-25 15:17:20 -0400 |
| commit | c37633ef079a3229df14e5bffacd6fb2f3896809 (patch) | |
| tree | 301615188a3e264ab6ae09fb809ee26299032554 | |
| parent | 68135241484ede24c8838afc2cf3d076f5b9c19f (diff) | |
| download | nova-c37633ef079a3229df14e5bffacd6fb2f3896809.tar.gz nova-c37633ef079a3229df14e5bffacd6fb2f3896809.tar.xz nova-c37633ef079a3229df14e5bffacd6fb2f3896809.zip | |
Fix docstring for SecurityGroupHandlerBase
Change-Id: I645a03cd1a80dc34a7b5a2e91072604e5156d51d
| -rw-r--r-- | nova/network/quantum/sg.py | 4 |
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.''' |
