From 2824e81140d3a8e37464f758cf67f50f2f7afca7 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 23 Dec 2015 20:00:45 +0100 Subject: Use a Python list (not tuple) for OUT_BINARY. This is more consistent with annotation syntax and looks slightly better in most cases. --- decoders/jitter/pd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'decoders/jitter/pd.py') diff --git a/decoders/jitter/pd.py b/decoders/jitter/pd.py index d572c36..d40c643 100644 --- a/decoders/jitter/pd.py +++ b/decoders/jitter/pd.py @@ -112,7 +112,7 @@ class Decoder(srd.Decoder): # Format the delta to an ASCII float value terminated by a newline. x = str(delta) + '\n' self.put(self.clk_start, self.sig_start, self.out_bin, - (0, x.encode('UTF-8'))) + [0, x.encode('UTF-8')]) # Helper function for missed clock and signal annotations. def putm(self, data): -- cgit v1.2.3-70-g09d2