From: albertogomcas Date: Tue, 16 Mar 2010 08:39:37 +0000 (+0000) Subject: mfp3d.py : the retraction speed is extracted from Velocity, not RetractVelocity X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9e3727c37c13b4a3b93901d5b93360f988d3d81c;p=hooke.git mfp3d.py : the retraction speed is extracted from Velocity, not RetractVelocity --- diff --git a/mfp3d.py b/mfp3d.py index 9049729..944d614 100644 --- a/mfp3d.py +++ b/mfp3d.py @@ -204,7 +204,7 @@ class mfp3dDriver(lhc.Driver): if ':' in line: key, value = line.split(':', 1) self.note[key] = value - self.retract_velocity = float(self.note['RetractVelocity']) + self.retract_velocity = float(self.note['Velocity']) self.spring_constant = float(self.note['SpringConstant']) else: assert False, "Fileversion is of type '%i', not supported" % dtype