fix deprecation warning
This commit is contained in:
parent
0a57535d5f
commit
09ac00219b
|
|
@ -104,7 +104,7 @@ def parse_telemetry_report(text):
|
|||
parsed = {}
|
||||
rest = ""
|
||||
|
||||
match = re.findall("(^#\d{3},(\d+(\.\d+)?,){5}[01]{8}$)", text)
|
||||
match = re.findall(r"(^#\d{3},(\d+(\.\d+)?,){5}[01]{8}$)", text)
|
||||
|
||||
if match:
|
||||
logger.debug("Attempting to parse telemetry-message packet")
|
||||
|
|
|
|||
Loading…
Reference in New Issue