Skip to content

Commit 2e0c428

Browse files
committed
properly handle utf-8 characters in recordset names
1 parent c0107bc commit 2e0c428

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/recordset_indexed_modified_date_and_archive_link_status.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def print_recordset_view_data(api,uuid):
6868
# recordset_item_from_api[""],
6969
check_archive_status(recordset_item_from_api["indexTerms"]["indexData"]["link"])
7070
]
71-
print(*the_important_data, sep="\t")
71+
line = "\t".join(the_important_data)
72+
print(line.encode("utf-8"))
7273

7374

7475
if args.uuids_file:

0 commit comments

Comments
 (0)