|
|
@ -96,7 +96,8 @@ class PublicRelations(Bureau):
|
|
|
|
for t in tweets:
|
|
|
|
for t in tweets:
|
|
|
|
prn.set(text_type="U")
|
|
|
|
prn.set(text_type="U")
|
|
|
|
username = t["user"]["name"].encode("cp437", "ignore")
|
|
|
|
username = t["user"]["name"].encode("cp437", "ignore")
|
|
|
|
prn.text(username + "\r\n")
|
|
|
|
prn._raw(username)
|
|
|
|
|
|
|
|
prn.text("\r\n")
|
|
|
|
prn.set(text_type="NORMAL")
|
|
|
|
prn.set(text_type="NORMAL")
|
|
|
|
t_wrapped = textwrap.fill(t["text"], width=48) + "\r\n"
|
|
|
|
t_wrapped = textwrap.fill(t["text"], width=48) + "\r\n"
|
|
|
|
t_enc = t_wrapped.encode("cp437", "ignore")
|
|
|
|
t_enc = t_wrapped.encode("cp437", "ignore")
|
|
|
|