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
2 changes: 2 additions & 0 deletions vobject/vcard.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ def serializeFields(obj, order=None):
If order is None, obj should be a list, backslash escape each field and
return a ';' separated string.
"""
if isinstance(obj, str):
return obj + ';'
fields = []
if order is None:
fields = [backslashEscape(val) for val in obj]
Expand Down