Commit 84ec7275a810a475cb777bfae4ea8a3a70f11f54

Authored by bmarechal
1 parent c8a8ff0f66
Exists in master

add \n

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

instruments/Sym5125A.py
... ... @@ -34,7 +34,8 @@
34 34 pass
35 35  
36 36 def getValue(self):
37   - return self.tn.read_until('\n').replace('\r\n','')
  37 + mes = self.tn.read_until('\n').replace('\r\n','')
  38 + return mes + '\n'
38 39  
39 40 def read(self):
40 41 pass