diff --git a/sapl/utils.py b/sapl/utils.py index 8f123b2ef..0fa20f706 100644 --- a/sapl/utils.py +++ b/sapl/utils.py @@ -707,13 +707,13 @@ def TrocaTag(texto, startTag, endTag, sizeStart, sizeEnd, styleName): if (texto[i:i + sizeEnd] == endTag): textoSaida += 'blockTable>' insideTag = 0 - i = i + sizeEnd + i += sizeEnd else: textoSaida += texto[i] - i = i + 1 + i += 1 else: textoSaida += texto[i] - i = i + 1 + i += 1 return textoSaida @@ -729,6 +729,6 @@ def RemoveTag(texto): else: textoSaida += texto[i] - i = i + 1 + i += 1 - return textoSaida \ No newline at end of file + return textoSaida