From 2d7b222c2114fe47c377cd692eda9ae7a1e08df9 Mon Sep 17 00:00:00 2001 From: b3yond Date: Mon, 26 Mar 2018 21:21:51 +0200 Subject: [PATCH] removed attribution of author in bridged reports. #2 --- report.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/report.py b/report.py index d58c25e..3575f2e 100644 --- a/report.py +++ b/report.py @@ -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