Merge pull request #14 from imitation/master

Bugfix: Bed target temp now shows in graph
master
Gina Häußge 2013-01-07 11:08:29 -08:00
commit 40a267e231
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ class MachineCom(object):
pass
if 'M140' in cmd or 'M190' in cmd:
try:
self._bedTargetTemp = float(re.search('S([0-9]+)').group(1))
self._bedTargetTemp = float(re.search('S([0-9]+)', cmd).group(1))
except:
pass
self._log('Send: %s' % (cmd))