try to smack unicode into cp437 for usernames

workspace
Brendan Howell 6 years ago
parent ea91a57e0a
commit e2fd18800c

@ -333,9 +333,10 @@ class PublicRelations(Bureau):
prn.text("NOTIFICATIONS:\r\n")
prn.set(text_type="NORMAL")
for note in notifications:
username = t.account.display_name.encode("cp437", "ignore") + \
" (" + t.account.acct.encode("cp437", "ignore") + ")"
prn.text(note["type"] + " " + str(note["created_at"]) + " from " +
note["account"]["display_name"] + " (" +
note["account"]["acct"] + "):\r\n" + str(note.keys()) +
username + ":\r\n" + str(note.keys()) +
"\r\n")
prn.text("\r\n\r\n")

Loading…
Cancel
Save