fix fst4w profile

This commit is contained in:
Jakob Ketterl 2020-12-08 01:06:21 +01:00
parent efac5b0449
commit 3291dbe8d2
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ class Fst4wProfile(WsjtProfile):
def getEnabledProfiles():
config = Config.get()
profiles = config["fst4w_enabled_intervals"] if "fst4w_enabled_intervals" in config else []
return [Fst4Profile(i) for i in profiles if i in Fst4Profile.availableIntervals]
return [Fst4wProfile(i) for i in profiles if i in Fst4wProfile.availableIntervals]
class WsjtParser(Parser):