From d9673085e0f35f4cf7704f340ce56f954d7beab6 Mon Sep 17 00:00:00 2001 From: Roland Hieber Date: Sun, 4 Oct 2015 23:04:02 +0200 Subject: [PATCH] rfm12: fix small typo There is a small typo in the rfm12 protocol decoder that I just noticed: --- decoders/rfm12/pd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decoders/rfm12/pd.py b/decoders/rfm12/pd.py index 3065383..9bcbd9d 100644 --- a/decoders/rfm12/pd.py +++ b/decoders/rfm12/pd.py @@ -460,7 +460,7 @@ class Decoder(srd.Decoder): else: c = '%02x %02x' % tuple(cmd) r = '%02x %02x' % tuple(ret) - self.putx(0, 16, ['Uknown command: %s (reply: %s)!' % (c, r)]) + self.putx(0, 16, ['Unknown command: %s (reply: %s)!' % (c, r)]) def decode(self, ss, es, data): ptype, mosi, miso = data -- 2.30.2