Trivial Fix: Fix typo

Change-Id: I05f5abf619016a48babedf1f108430d470d8870e
This commit is contained in:
zhurong
2016-06-08 04:37:41 -04:00
parent 32883fcc45
commit 8585c140de

View File

@@ -1117,11 +1117,11 @@ class Client(ClientBase):
params=_params)
def create_lbaas_member(self, lbaas_pool, body=None):
"""Creates an lbaas_member."""
"""Creates a lbaas_member."""
return self.post(self.lbaas_members_path % lbaas_pool, body=body)
def update_lbaas_member(self, lbaas_member, lbaas_pool, body=None):
"""Updates a lbaas_healthmonitor."""
"""Updates a lbaas_member."""
return self.put(self.lbaas_member_path % (lbaas_pool, lbaas_member),
body=body)