Fixed indentation

In some places, indentation was wrong.
In this patchset, they are fixed.

Change-Id: Ic66105d53b76cf53fbb4bc7bc19329b83b89687e
This commit is contained in:
Gábor Antal
2016-09-01 18:59:46 +02:00
parent 8a38c4f479
commit add49f3fcb
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.