summaryrefslogtreecommitdiff
path: root/decoders/i2cdemux
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/i2cdemux')
-rw-r--r--decoders/i2cdemux/i2cdemux.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/i2cdemux/i2cdemux.py b/decoders/i2cdemux/i2cdemux.py
index c4c0d3b..4632c8d 100644
--- a/decoders/i2cdemux/i2cdemux.py
+++ b/decoders/i2cdemux/i2cdemux.py
@@ -57,7 +57,7 @@ class Decoder(srd.Decoder):
# get the whole chunk of packets (from START to STOP).
def decode(self, ss, es, data):
- cmd, databyte, ack = data
+ cmd, databyte = data
# Add the I2C packet to our local cache.
self.packets.append([ss, es, data])