summaryrefslogtreecommitdiff
path: root/decoders/dcf77
diff options
context:
space:
mode:
authorGerhard Sittig <gerhard.sittig@gmx.net>2018-04-16 21:12:16 +0200
committerGerhard Sittig <gerhard.sittig@gmx.net>2018-04-23 23:25:43 +0200
commitaad263bb83593a66d4a834b30acf8e8a2f1b5c4c (patch)
tree65181123ce6c5b917528ffdc0a00658ed2f61eff /decoders/dcf77
parent3f3c4614b551855d7cf56e83ec7fb883592050ab (diff)
downloadlibsigrokdecode-aad263bb83593a66d4a834b30acf8e8a2f1b5c4c.tar.gz
libsigrokdecode-aad263bb83593a66d4a834b30acf8e8a2f1b5c4c.zip
dcf77, lpc: rephrase bit string formatting
Create the text representation of a bit string by means of the builtin .format() method and an appropriate specifier. Drop the non-obvious sequence of bin() and slice and zfill() calls.
Diffstat (limited to 'decoders/dcf77')
-rw-r--r--decoders/dcf77/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/dcf77/pd.py b/decoders/dcf77/pd.py
index 7b180ce..4789b66 100644
--- a/decoders/dcf77/pd.py
+++ b/decoders/dcf77/pd.py
@@ -127,7 +127,7 @@ class Decoder(srd.Decoder):
else:
self.tmp |= (bit << (c - 1))
if c == 14:
- s = bin(self.tmp)[2:].zfill(14)
+ s = '{:014b}'.format(self.tmp)
self.putb([1, ['Special bits: %s' % s, 'SB: %s' % s]])
elif c == 15:
s = '' if (bit == 1) else 'not '