diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-14 21:44:01 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-14 21:44:01 +0100 |
commit | 526e580446dd45c3cb6811dd69a31eaff54e908e (patch) | |
tree | 67f917a009e23175bc0ec92474a4b1921d3d1820 /decoders | |
parent | 3d3da57d7e7a7414e012e86dde32530e01b4dc45 (diff) | |
download | libsigrokdecode-526e580446dd45c3cb6811dd69a31eaff54e908e.tar.gz libsigrokdecode-526e580446dd45c3cb6811dd69a31eaff54e908e.zip |
srd: Separate author/email fields for now.
This will be needed in GUIs to easily handle/display the values without
the need for additional parsing.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/ddc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/ddc.py b/decoders/ddc.py index 395f72f..123881f 100644 --- a/decoders/ddc.py +++ b/decoders/ddc.py @@ -35,8 +35,8 @@ class Decoder(srd.Decoder): longname = 'Display Data Channel' desc = 'A protocol for communication between computers and displays.' longdesc = '' - author = 'Bert Vermeulen <bert@biot.com>' - email = '<bert@biot.com>' + author = 'Bert Vermeulen' + email = 'bert@biot.com' license = 'gplv3+' inputs = ['i2c'] outputs = ['ddc'] |