From 8143ee559c2025f3d47434beac64865819b80682 Mon Sep 17 00:00:00 2001 From: Christopher Keller Date: Thu, 28 Jun 2012 13:05:56 -0700 Subject: [PATCH] Fixed missing colon in printcore on lines 209 and 231 --- printcore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/printcore.py b/printcore.py index f0a2ccb..7d95e55 100755 --- a/printcore.py +++ b/printcore.py @@ -206,7 +206,7 @@ class printcore(): time.sleep(0.001) if (wait == 0 and self.wait > 0): wait = self.wait - if (wait > 0) + if (wait > 0): self.clear=False self._send(command,self.lineno,True) self.lineno+=1 @@ -228,7 +228,7 @@ class printcore(): time.sleep(0.001) if (wait == 0 and self.wait > 0): wait = self.wait - if (wait > 0) + if (wait > 0): self.clear=False self._send(command) while ((wait > 0) and not self.clear):