Commit 3344589e authored by Theodor-Adrian Stana's avatar Theodor-Adrian Stana

sw: Removed message printing on exception in vv_pts.py

parent 1d0cfdde
......@@ -187,7 +187,6 @@ class SKT(object):
self.handle.send(cm)
except Exception as e:
msg = "vv_write: No reply from register at address 0x%03x " % (byte_offset)
print msg+orig
raise BusException(msg)
return self.handle.recv(256).find("Done")
......@@ -213,7 +212,6 @@ class SKT(object):
except Exception as e:
msg = "vv_read: No reply from register at address 0x%03x " % (byte_offset)
print msg+orig
raise BusException(msg)
return rp
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment