Skip to content

Commit 0c15dc7

Browse files
committed
Encode printed name to fix ascii encode error
- Legacy-Id: 3672
1 parent e903dc1 commit 0c15dc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

redesign/importing/import-meetings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def import_material_kind(kind, doctype):
243243
e.desc = u"Uploaded %s" % d.type_id
244244
e.save()
245245
else:
246-
print "NO UPLOAD ACTIVITY RECORD for", d.name.encode("utf-8"), t, wg_meeting_session.group_acronym_id, wg_meeting_session.meeting_id
246+
print "NO UPLOAD ACTIVITY RECORD for", d.name.encode("utf-8"), t.encode("utf-8"), wg_meeting_session.group_acronym_id, wg_meeting_session.meeting_id
247247

248248

249249
import_material_kind(WgAgenda, agenda_doctype)

0 commit comments

Comments
 (0)