Minor patch

This commit is contained in:
Miroslav Stampar
2024-11-19 13:25:41 +01:00
parent 10f8b7d0e2
commit cc245a0d05
3 changed files with 4 additions and 4 deletions

View File

@@ -3721,7 +3721,7 @@ def joinValue(value, delimiter=','):
"""
if isListLike(value):
retVal = delimiter.join(getUnicode(_) for _ in value)
retVal = delimiter.join(getText(_ if _ is not None else "None") for _ in value)
else:
retVal = value