diff options
Diffstat (limited to 'decoders/miller')
-rw-r--r-- | decoders/miller/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/miller/pd.py b/decoders/miller/pd.py index 90c7c19..33214b1 100644 --- a/decoders/miller/pd.py +++ b/decoders/miller/pd.py @@ -51,7 +51,7 @@ class Decoder(srd.Decoder): ('bit', 'Bit'), ('bitstring', 'Bitstring'), ) - annotation_rows = tuple((u, v, (i,)) for i, (u, v) in enumerate(annotations)) + annotation_rows = tuple((u + 's', v + 's', (i,)) for i, (u, v) in enumerate(annotations)) binary = ( ('raw', 'Raw binary'), ) |