use python3 for yml parsing

This commit is contained in:
tux 2024-11-28 09:19:52 +01:00
parent 487bf457fb
commit db26306b5b

View File

@ -2,7 +2,7 @@
(define (yml-file->scm filename)
(let* ((python_cmd (string-append "import sys, yaml, json; print(json.dumps(yaml.safe_load(open('" filename "'))))"))
(pipe (open-pipe* OPEN_READ "python" "-c" python_cmd))
(pipe (open-pipe* OPEN_READ "python3" "-c" python_cmd))
(json (get-string-all pipe)))
(close-pipe pipe)
(json-string->scm json)))