From 6bcd635e1dbd3e9c6fcc0d5cc1a254b5406fa6d7 Mon Sep 17 00:00:00 2001 From: Edward Date: Wed, 11 Apr 2018 18:30:55 -0300 Subject: [PATCH] Altera sintaxe --- sapl/utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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