diff --git a/novaclient/v1_1/images.py b/novaclient/v1_1/images.py index 3a1c7da27..ba6820b64 100644 --- a/novaclient/v1_1/images.py +++ b/novaclient/v1_1/images.py @@ -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: diff --git a/novaclient/v1_1/security_groups.py b/novaclient/v1_1/security_groups.py index b929b4e20..00e1b48f0 100644 --- a/novaclient/v1_1/security_groups.py +++ b/novaclient/v1_1/security_groups.py @@ -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 diff --git a/novaclient/v1_1/servers.py b/novaclient/v1_1/servers.py index ef73d8669..dbbad7b22 100644 --- a/novaclient/v1_1/servers.py +++ b/novaclient/v1_1/servers.py @@ -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)