From cd5a039df30c8fe48c286fe2c1c4f9ebec54d98b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 18 Oct 2023 00:51:18 +0900 Subject: [PATCH] Fix python shebang The current shebang requires /usr/bin/python which is not available in Ubuntu Jammy by default. Change-Id: If112e3f4389fab8e5954ddf85a00a0615233740c --- setup.py | 2 +- tools/list_oslo_projects.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c0a24ea..22cfdce 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/list_oslo_projects.py b/tools/list_oslo_projects.py index 6e508f7..64419b1 100755 --- a/tools/list_oslo_projects.py +++ b/tools/list_oslo_projects.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain