diff options
Diffstat (limited to 'decoders/i2s/pd.py')
-rw-r--r-- | decoders/i2s/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/i2s/pd.py b/decoders/i2s/pd.py index 91d261a..292a4c4 100644 --- a/decoders/i2s/pd.py +++ b/decoders/i2s/pd.py @@ -69,7 +69,7 @@ class Decoder(srd.Decoder): self.wordlength = -1 def start(self): - self.out_proto = self.add(srd.OUTPUT_PROTO, 'i2s') + self.out_proto = self.add(srd.OUTPUT_PYTHON, 'i2s') self.out_ann = self.add(srd.OUTPUT_ANN, 'i2s') def metadata(self, key, value): |