From 702734ff69f76fcb192a2d94d51e605981908e9d Mon Sep 17 00:00:00 2001 From: Lan Dam <ldam@passcal.nmt.edu> Date: Sat, 29 Apr 2023 13:55:03 -0600 Subject: [PATCH] functions.py: wildcards separated by ',' --- sohstationviewer/view/util/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sohstationviewer/view/util/functions.py b/sohstationviewer/view/util/functions.py index 50332b76d..2927cae8c 100644 --- a/sohstationviewer/view/util/functions.py +++ b/sohstationviewer/view/util/functions.py @@ -170,7 +170,7 @@ def check_chan_wildcards_format(wildcards: str): :param wildcards: wildcards that are separated with ','. :type wildcards: str """ - for wc in wildcards.split(): + for wc in wildcards.split(','): wc = wc.strip() if len(wc) == 1 and wc != '*': -- GitLab