X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fhdcp%2Fpd.py;h=157b23a3dba44d9a52d3befd75639f2b9ab2a37e;hp=6004b7b6e1b6af1c146067a01b0747d4e3044686;hb=e144452bcdd5f2abbe6b6f3da41ad64f67e39def;hpb=9bbfff99dc56be9e69522ffe744b3197f54007db diff --git a/decoders/hdcp/pd.py b/decoders/hdcp/pd.py index 6004b7b..157b23a 100644 --- a/decoders/hdcp/pd.py +++ b/decoders/hdcp/pd.py @@ -1,7 +1,7 @@ ## ## This file is part of the libsigrokdecode project. ## -## Copyright (C) 2018 Dave Craig +## Copyright (C) 2018 Dave Craig ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -73,11 +73,11 @@ class Decoder(srd.Decoder): annotations = \ tuple(('message-0x%02X' % i, 'Message 0x%02X' % i) for i in range(18)) + ( ('summary', 'Summary'), - ('warnings', 'Warnings'), + ('warning', 'Warning'), ) annotation_rows = ( ('messages', 'Messages', tuple(range(18))), - ('summary', 'Summary', (18,)), + ('summaries', 'Summaries', (18,)), ('warnings', 'Warnings', (19,)), )