Skip to content
Snippets Groups Projects
Commit 702734ff authored by Lan Dam's avatar Lan Dam
Browse files

functions.py: wildcards separated by ','

parent 736f7cbf
No related branches found
No related tags found
No related merge requests found
Pipeline #2523 passed with stage
in 2 minutes and 36 seconds
......@@ -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 != '*':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment