Merge pull request #358 from DanLipsitt/patch-1

fix typo in do_pause() log output
master
kliment 2013-05-01 22:11:27 -07:00
commit b3a673bc97
1 changed files with 1 additions and 1 deletions

View File

@ -790,7 +790,7 @@ class pronsole(cmd.Cmd):
self.p.send_now("M25") self.p.send_now("M25")
else: else:
if(not self.p.printing): if(not self.p.printing):
self.log("Not self.log(ing, cannot pause.") self.log("Not printing, cannot pause.")
return return
self.p.pause() self.p.pause()
#self.p.connect()# This seems to work, but is not a good solution. #self.p.connect()# This seems to work, but is not a good solution.