1
0
mirror of http://aero2k.de/t/repos/urlbot-native.git synced 2017-09-06 15:25:38 +02:00

ignore lines that are probably the bots own log lines

This commit is contained in:
urlbot
2014-10-11 16:31:09 +02:00
parent 94c538696f
commit 583e1174d6

View File

@@ -228,6 +228,10 @@ def parse_delete(filepath):
# logger('info', "no spoiler for: " + content) # logger('info', "no spoiler for: " + content)
return return
if sys.argv[0] in content:
logger('info', 'silenced, this is my own log')
return
if True != extract_url(content): if True != extract_url(content):
plugins.data_parse_commands(content) plugins.data_parse_commands(content)
plugins.data_parse_other(content) plugins.data_parse_other(content)