LPCconnector/LPCAppObject.py
changeset 30 9cd6bc93ed89
parent 29 86fb7dc2b54e
child 31 a9c9d1fc97d3
--- a/LPCconnector/LPCAppObject.py	Tue Mar 19 17:22:27 2013 +0900
+++ b/LPCconnector/LPCAppObject.py	Tue Mar 19 23:19:43 2013 +0100
@@ -49,7 +49,7 @@
         ccounts = ctypes.cast(
                       ctypes.c_char_p(strcounts),
                       ctypes.POINTER(ctypes.c_uint32))
-        return (self.PLCStatus,)+tuple(int(ccounts[idx]) for idx in range(4))
+        return self.PLCStatus, tuple(int(ccounts[idx]) for idx in range(4))
 
     def MatchMD5(self, MD5):
         data = self.HandleSerialTransaction(GET_PLCIDTransaction())