diff --git a/screenless/bureau/publicrelations/publicrelations.py b/screenless/bureau/publicrelations/publicrelations.py index eef10f4..5b7c47b 100644 --- a/screenless/bureau/publicrelations/publicrelations.py +++ b/screenless/bureau/publicrelations/publicrelations.py @@ -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")