diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2017-03-18 22:58:41 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2017-03-18 22:58:41 +0100 |
commit | 92c117d691161db07cf4dc38a6bef2d563d31f43 (patch) | |
tree | 64f12446d2030d3401bee8be57b7b92d16145999 /decoders | |
parent | b26c713b6a1650eba0e7808672f290813c893881 (diff) | |
download | libsigrokdecode-92c117d691161db07cf4dc38a6bef2d563d31f43.tar.gz libsigrokdecode-92c117d691161db07cf4dc38a6bef2d563d31f43.zip |
dsi: Small fix for the longname.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/dsi/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/dsi/pd.py b/decoders/dsi/pd.py index dc19ba2..0c1941a 100644 --- a/decoders/dsi/pd.py +++ b/decoders/dsi/pd.py @@ -26,7 +26,7 @@ class Decoder(srd.Decoder): api_version = 2 id = 'dsi' name = 'DSI' - longname = 'Digital Serial Interface Lighting' + longname = 'Digital Serial Interface' desc = 'DSI lighting control protocol.' license = 'gplv2+' inputs = ['logic'] |