From 4f65b5159e1aaf8ec0c6f935053b823f446db99e Mon Sep 17 00:00:00 2001 From: Florian Date: Mon, 16 Jan 2017 14:03:51 +0100 Subject: [PATCH] Update decoder.py Fixing typos --- includes/decoder.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/decoder.py b/includes/decoder.py index d62604d..26c8ba4 100644 --- a/includes/decoder.py +++ b/includes/decoder.py @@ -27,21 +27,21 @@ def decode(freq, decoded): # FMS Decoder Section # check FMS: -> check CRC -> validate -> check double alarm -> log if "FMS:" in decoded: - logging.debug("recieved FMS") + logging.debug("received FMS") from includes.decoders import fms fms.decode(freq, decoded) # ZVEI Decoder Section # check ZVEI: -> validate -> check double alarm -> log elif "ZVEI2:" in decoded: - logging.debug("recieved ZVEI") + logging.debug("received ZVEI") from includes.decoders import zvei zvei.decode(freq, decoded) # POCSAG Decoder Section # check POCSAG -> validate -> check double alarm -> log elif "POCSAG512:" in decoded or "POCSAG1200:" in decoded or "POCSAG2400:" in decoded: - logging.debug("recieved POCSAG") + logging.debug("received POCSAG") from includes.decoders import poc poc.decode(freq, decoded)