removed attribution of author in bridged reports. #2

master
b3yond 2018-03-26 21:21:51 +02:00
parent 8f792cbeac
commit 36d8329dcc
1 changed files with 4 additions and 3 deletions

View File

@ -29,8 +29,9 @@ class Report(object):
Format the report for bot.post()
:rtype: string
:return: toot: text to be tooted, e.g. "_b3yond: There are
:return: toot: text to be tooted, e.g. "There are
uniformed controllers in the U2 at Opernhaus."
"""
strng = self.author + ": " + self.text
return strng
# strng = self.author + ": " + self.text # deprecated;
# we don't want to put the names of people too public.
return self.text