From 587d3b4cf1f4a2f8a668b5401348e6ec3175821c Mon Sep 17 00:00:00 2001 From: Ian Renton Date: Sat, 25 Oct 2025 10:34:19 +0100 Subject: [PATCH] Typo --- spotproviders/dxcluster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spotproviders/dxcluster.py b/spotproviders/dxcluster.py index a83dba6..3f9f653 100644 --- a/spotproviders/dxcluster.py +++ b/spotproviders/dxcluster.py @@ -19,9 +19,9 @@ class DXCluster(SpotProvider): # Note the callsign pattern deliberately excludes calls ending in "-#", which are from RBN and can be enabled by # default on some clusters. If you want RBN spots, there is a separate provider for that. CALLSIGN_PATTERN = "([a-z|0-9|/]+)" - FREQUENCY_PATTERM = "([0-9|.]+)" + FREQUENCY_PATTERN = "([0-9|.]+)" LINE_PATTERN = re.compile( - "^DX de " + CALLSIGN_PATTERN + ":\\s+" + FREQUENCY_PATTERM + "\\s+" + CALLSIGN_PATTERN + "\\s+(.*)\\s+(\\d{4}Z)", + "^DX de " + CALLSIGN_PATTERN + ":\\s+" + FREQUENCY_PATTERN + "\\s+" + CALLSIGN_PATTERN + "\\s+(.*)\\s+(\\d{4}Z)", re.IGNORECASE) # Constructor requires hostname and port