From ae2346947d91815f34fdefcf738c9cf11427751d Mon Sep 17 00:00:00 2001 From: Tomas Baca Date: Tue, 14 Nov 2023 07:42:05 +0100 Subject: [PATCH] fixed parsing of unstable --- .ci/parse_yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/parse_yaml.py b/.ci/parse_yaml.py index c5d11e9c91..c7dbd39d7f 100755 --- a/.ci/parse_yaml.py +++ b/.ci/parse_yaml.py @@ -47,7 +47,7 @@ def main(): except: pass - print("{} {} {} {}".format(package, url, stable_ref, testing_ref, unstable_ref)) + print("{} {} {} {} {}".format(package, url, stable_ref, testing_ref, unstable_ref)) if __name__ == '__main__': main()