Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stenway/sml.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def __init__(self, rootName = "Root"):
self.emptyNodesAfter = []

def setDefaultIndentation(self, defaultIndentation):
if (defaultIndentation != None and strlen(defaultIndentation) > 0 and
if (defaultIndentation != None and len(defaultIndentation) > 0 and
not WsvString.isWhitespace(defaultIndentation)):
raise Exception("Indentation value contains non whitespace character")

Expand Down Expand Up @@ -488,7 +488,7 @@ def serializeDocumentNonPreserving(document, minified = False):
endKeyword = None

result = SmlSerializer.serializeElementNonPreserving(document.getRoot(), 0, defaultIndentation, endKeyword)
result = substr(result, 0, -1)
result = result[0:-1]
return result

def serializeElementNonPreserving(element, level, defaultIndentation, endKeyword):
Expand Down