File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -686,7 +686,7 @@ def load(req: Plumbing.Request, *opts):
686686 if elt == "as" :
687687 child_opts .alias = value
688688 elif elt == "verify" :
689- child_opts .verify = [ value ]
689+ child_opts .verify = value . split ( "," )
690690 elif elt == "via" :
691691 child_opts .via .append (PipelineCallback (value , req , store = req .md .store ))
692692 elif elt == "cleanup" :
@@ -698,7 +698,7 @@ def load(req: Plumbing.Request, *opts):
698698 "Usage: load resource [as url] [[verify] verification] [via pipeline]* [cleanup pipeline]*"
699699 )
700700 else :
701- child_opts .verify = [ elt ]
701+ child_opts .verify = elt . split ( "," )
702702
703703 # override anything in child_opts with what is in opts
704704 child_opts = child_opts .model_copy (update = _opts )
You can’t perform that action at this time.
0 commit comments