Merge "Fix docstring on novaclient"

This commit is contained in:
Jenkins 2013-12-11 18:37:53 +00:00 committed by Gerrit Code Review
commit 726e46ef97
3 changed files with 3 additions and 4 deletions

@ -92,7 +92,7 @@ class ImageManager(base.ManagerWithFind):
"""
Delete metadata from an image
:param image: The :class:`Image` to add metadata to
:param image: The :class:`Image` to delete metadata
:param keys: A list of metadata keys to delete from the image
"""
for k in keys:

@ -52,7 +52,7 @@ class SecurityGroupManager(base.ManagerWithFind):
"""
Update a security group
:param group: The security group to delete (group or ID)
:param group: The security group to update (group or ID)
:param name: name for the security group to update
:param description: description for the security group to update
:rtype: the security group object

@ -43,10 +43,9 @@ class Server(base.Resource):
def update(self, name=None):
"""
Update the name or the password for this server.
Update the name for this server.
:param name: Update the server's name.
:param password: Update the root password.
"""
self.manager.update(self, name=name)