diff options
Diffstat (limited to 'decoders/morse/pd.py')
-rw-r--r-- | decoders/morse/pd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/morse/pd.py b/decoders/morse/pd.py index f6ff718..f768b3a 100644 --- a/decoders/morse/pd.py +++ b/decoders/morse/pd.py @@ -130,12 +130,12 @@ class Decoder(srd.Decoder): ) annotations = ( ('time', 'Time'), - ('units', 'Units'), + ('unit', 'Unit'), ('symbol', 'Symbol'), ('letter', 'Letter'), ('word', 'Word'), ) - 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)) def __init__(self): self.reset() |