Fix syntax errors of the comments

Change-Id: Id6eadb991b2d0ad7a8416b1137767b251d4a23d7
This commit is contained in:
chenaidong1 2016-11-24 10:55:33 +08:00
parent 3a18488cf4
commit 686e85476c
2 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ Base = declarative.declarative_base(cls=_MuranoBase)
class Environment(Base, TimestampMixin):
"""Represents a Environment in the metadata-store."""
"""Represents an Environment in the metadata-store."""
__tablename__ = 'environment'
__table_args__ = (sa.Index(
'ix_name_tenant_id', 'name', 'tenant_id', unique=True),)
@ -89,7 +89,7 @@ class Environment(Base, TimestampMixin):
class EnvironmentTemplate(Base, TimestampMixin):
"""Represents a Environment Template in the metadata-store."""
"""Represents an Environment Template in the metadata-store."""
__tablename__ = 'environment-template'
id = sa.Column(sa.String(36),

View File

@ -107,7 +107,7 @@ class EnvTemplateServices(object):
@staticmethod
def update(env_template_id, body):
"""It updates the description of a environment template.
"""It updates the description of an environment template.
:param env_template_id: Template Id to be deleted.
:param body: The description to be updated.