From ec6c5321121825ae91831ed04a7b31c1df06ebcc Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 12 Jul 2011 10:42:00 +0200 Subject: [PATCH] Do not try to parse DEBUG_ lines from Sprinter. --- printcore.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/printcore.py b/printcore.py index a835522..b265d61 100644 --- a/printcore.py +++ b/printcore.py @@ -86,6 +86,8 @@ class printcore(): pass if self.loud: print "RECV: ",line.rstrip() + if(line.startswith('DEBUG_')): + continue if(line.startswith('start') or line.startswith('ok')): self.clear=True if(line.startswith('start') or line.startswith('ok') or "T:" in line):