Commit 2444b364 authored by haileyschoelkopf's avatar haileyschoelkopf
Browse files

fix error when using wildcard task names

parent aa9e1062
...@@ -153,7 +153,7 @@ def cli_evaluate(args: Union[argparse.Namespace, None] = None) -> None: ...@@ -153,7 +153,7 @@ def cli_evaluate(args: Union[argparse.Namespace, None] = None) -> None:
task task
for task in tasks_list for task in tasks_list
if task not in task_names and "*" not in task if task not in task_names and "*" not in task
] ] # we don't want errors if a wildcard ("*") task name was used
if task_missing: if task_missing:
missing = ", ".join(task_missing) missing = ", ".join(task_missing)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment