Fix inconsistent argument name/placeholder in EnvTemplateManager.delete_app

Change-Id: Icc02bc8d14e49b96819db51467c3babeaea4da8f
Closes-Bug: #1545509
This commit is contained in:
Jacek Tomasiak 2016-02-14 21:02:24 +01:00
parent 70911c2a6c
commit f1ebdc6b8b
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class EnvTemplateManager(base.Manager):
:param app_id: the application ID to be deleted.
"""
return self._delete('/v1/templates/{id}/services/{app_id}'.
format(id=env_template_id, service_id=app_id))
format(id=env_template_id, app_id=app_id))
def create_env(self, env_template_id, name):
"""It creates new environment from template.