Merge "Fixed indentation"

This commit is contained in:
Jenkins
2016-09-14 09:29:51 +00:00
committed by Gerrit Code Review
5 changed files with 5 additions and 5 deletions

View File

@@ -185,7 +185,7 @@ class Action(base.WatcherObject):
for field in self.fields:
if (hasattr(self, base.get_attrname(field)) and
self[field] != current[field]):
self[field] = current[field]
self[field] = current[field]
def soft_delete(self, context=None):
"""soft Delete the Audit from the DB.

View File

@@ -251,7 +251,7 @@ class ActionPlan(base.WatcherObject):
for field in self.fields:
if (hasattr(self, base.get_attrname(field)) and
self[field] != current[field]):
self[field] = current[field]
self[field] = current[field]
def soft_delete(self, context=None):
"""Soft Delete the Action plan from the DB.

View File

@@ -252,7 +252,7 @@ class Audit(base.WatcherObject):
for field in self.fields:
if (hasattr(self, base.get_attrname(field)) and
self[field] != current[field]):
self[field] = current[field]
self[field] = current[field]
def soft_delete(self, context=None):
"""soft Delete the Audit from the DB.

View File

@@ -258,7 +258,7 @@ class AuditTemplate(base.WatcherObject):
for field in self.fields:
if (hasattr(self, base.get_attrname(field)) and
self[field] != current[field]):
self[field] = current[field]
self[field] = current[field]
def soft_delete(self, context=None):
"""soft Delete the :class:`AuditTemplate` from the DB.

View File

@@ -182,7 +182,7 @@ class EfficacyIndicator(base.WatcherObject):
for field in self.fields:
if (hasattr(self, base.get_attrname(field)) and
self[field] != current[field]):
self[field] = current[field]
self[field] = current[field]
def soft_delete(self, context=None):
"""Soft Delete the efficacy indicator from the DB.