diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-07-26 01:51:03 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-07-26 01:51:03 +0000 |
| commit | 868bbaf52e82cb4810836b49fab2749845ce486b (patch) | |
| tree | f8f837c2cfdc994a1b007b557a9c82448875d2d7 | |
| parent | f0f9a3e4e731e49e220b1bd515f9174c791e5a28 (diff) | |
| parent | c37633ef079a3229df14e5bffacd6fb2f3896809 (diff) | |
Merge "Fix docstring for SecurityGroupHandlerBase"
| -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.''' |
