From d9d268ea81d435f6dbdaeda4682e9440108ee8ae Mon Sep 17 00:00:00 2001 From: dadav <33197631+dadav@users.noreply.github.com> Date: Sat, 18 Apr 2020 13:53:42 +0200 Subject: [PATCH] fix bug --- pwnagotchi/plugins/default/logtail.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pwnagotchi/plugins/default/logtail.py b/pwnagotchi/plugins/default/logtail.py index b960a46..83ff885 100644 --- a/pwnagotchi/plugins/default/logtail.py +++ b/pwnagotchi/plugins/default/logtail.py @@ -264,10 +264,7 @@ class Logtail(plugins.Plugin): if path == 'stream': def generate(): with open(self.config['main']['log']['path']) as f: - # https://stackoverflow.com/questions/39549426/read-multiple-lines-from-a-file-batch-by-batch/39549901#39549901 - n = 1024 - for n_lines in iter(lambda: ''.join(islice(list(f)[-self.options.get('max-lines', 10000):], n)), ''): - yield n_lines + yield ''.join(f.readlines()[-self.options.get('max-lines', 4096):]) while True: yield f.readline()