From 9c1922d309ae50845129ab9db451c4d50800526f Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Mon, 3 Apr 2023 21:29:47 -0400 Subject: [PATCH] Fixing a mistake. --- owrx/aprs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/aprs/__init__.py b/owrx/aprs/__init__.py index e2a58b8f..8cf1bed0 100644 --- a/owrx/aprs/__init__.py +++ b/owrx/aprs/__init__.py @@ -194,7 +194,7 @@ class AprsParser(PickleModule): # filter out special aliases and anything without asterisk if "path" in aprsData and len(aprsData["path"]) > 0: path += [hop.strip("*") for hop in aprsData["path"] - if hop.endsWith("*") and not noHopPattern.match(hop)] + if hop.endswith("*") and not noHopPattern.match(hop)] # return path with all the asterisks stripped return path