From ca866708be1cf600c44157ed89c4ae24481f9a1e Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Mon, 14 Jan 2019 13:42:59 +0100 Subject: [PATCH] Fix typo --- scripts/ztplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ztplot.py b/scripts/ztplot.py index 2e2d174..aadc1ab 100755 --- a/scripts/ztplot.py +++ b/scripts/ztplot.py @@ -65,7 +65,7 @@ class ZTPlot(Module): self.run = True self.max_queue = 3 self.queue = queue.Queue() - self.thread = threading.Thread(target=self.plot, deamon=True) + self.thread = threading.Thread(target=self.plot, daemon=True) self.thread.start() def process(self, blob): -- GitLab