add missing comma separator in list

This commit is contained in:
wmayer
2018-09-03 21:33:06 +02:00
parent ef0fe57328
commit 9e5b31fe2a
+1 -1
View File
@@ -2214,7 +2214,7 @@ void PropertyStringListItem::setValue(const QVariant& value)
text.replace(QString::fromUtf8("'"),QString::fromUtf8("\\'"));
std::string pystr = Base::Tools::escapedUnicodeFromUtf8(text.toUtf8());
str << "u\"" << pystr.c_str() << "\"";
str << "u\"" << pystr.c_str() << "\", ";
}
str << "]";
setPropertyValue(data);