More cleanup

master
Guillaume Seguin 2012-08-03 23:26:47 +02:00
parent f1070225da
commit a63c310ec8
1 changed files with 4 additions and 4 deletions

View File

@ -213,15 +213,15 @@ class printcore():
def pause(self): def pause(self):
"""Pauses the print, saving the current position. """Pauses the print, saving the current position.
""" """
self.paused=True self.paused = True
self.printing=False self.printing = False
time.sleep(1) time.sleep(1)
def resume(self): def resume(self):
"""Resumes a paused print. """Resumes a paused print.
""" """
self.paused=False self.paused = False
self.printing=True self.printing = True
Thread(target=self._print).start() Thread(target=self._print).start()
def send(self,command,wait=0): def send(self,command,wait=0):