diff --git a/plugins/example/repeat.py b/plugins/example/repeat.py index 9ad8307..e13a51b 100644 --- a/plugins/example/repeat.py +++ b/plugins/example/repeat.py @@ -3,7 +3,6 @@ crontable = [] outputs = [] def process_message(data): - print data if data['channel'].startswith("D"): outputs.append([data['channel'], "from repeat1: " + data['text']]) diff --git a/plugins/example/repeat2.py b/plugins/example/repeat2.py index 1150493..95738fc 100644 --- a/plugins/example/repeat2.py +++ b/plugins/example/repeat2.py @@ -3,7 +3,6 @@ crontable = [] outputs = [] def process_message(data): - print data if data['channel'].startswith("D"): outputs.append([data['channel'], "from repeat2: " + data['text']])