From 3d9db2008870504fc1561492fc0a86e70debbe65 Mon Sep 17 00:00:00 2001 From: Chris Milne Date: Mon, 4 Jun 2018 18:52:06 +0200 Subject: [PATCH] wrong channel ! --- endstations/alvra_prime.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/endstations/alvra_prime.py b/endstations/alvra_prime.py index c9310d2..7b848f6 100755 --- a/endstations/alvra_prime.py +++ b/endstations/alvra_prime.py @@ -56,11 +56,11 @@ class table: def __str__(self): return "Table positions\nx: %s mm\ny: %s mm\nz: %s\npitch: %s mrad\nyaw: %s mrad\nmode SP: %s \nstatus: %s" \ - % (self.x.wm(),self.y.wm(),self.z.wm(),self.pitch.wm(),self.yaw.wm(),self.modeSP.get(),self.status.get(as_string=True)) + % (self.x.wm(),self.y.wm(),self.z.wm(),self.pitch.wm(),self.yaw.wm(),self.modeSP.get(as_string=True),self.status.get()) def __repr__(self): return "{'x': %s, 'y': %s,'z': %s,'pitch': %s, 'yaw': %s, 'mode set point': %s,'status': %s}" \ - % (self.x,self.y,self.z,self.pitch,self.yaw,self.modeSP.get(),self.status.get(as_string=True)) + % (self.x,self.y,self.z,self.pitch,self.yaw,self.modeSP.get(as_string=True),self.status.get()) class microscope: def __init__(self,Id,alias_namespace=None):