From 9e3727c37c13b4a3b93901d5b93360f988d3d81c Mon Sep 17 00:00:00 2001 From: albertogomcas Date: Tue, 16 Mar 2010 08:39:37 +0000 Subject: [PATCH] mfp3d.py : the retraction speed is extracted from Velocity, not RetractVelocity --- mfp3d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2