Fixed missing colon in printcore on lines 209 and 231

master
Christopher Keller 2012-06-28 13:05:56 -07:00
parent a198488d2d
commit 8143ee559c
1 changed files with 2 additions and 2 deletions

View File

@ -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):