Fixing regexp mistake.

This commit is contained in:
Marat Fayzullin 2024-11-21 19:49:00 -05:00
parent e3ab7f4645
commit e478435583
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ class EasParser(TextParser):
class CwSkimmerParser(TextParser):
def __init__(self, service: bool = False):
self.reLine = re.compile("^(\d+):(.+)$")
self.reLine = re.compile("^([0-9]+):(.+)$")
self.freqChanged = False
# Construct parent object
super().__init__(filePrefix="CW", service=service)