From 29a594c85a7734eefd0cfa635d8fcfca8f9eb60f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 17 Apr 2024 20:08:28 +0900 Subject: [PATCH] Fix wrong shebang of loguserdata.py With the previous detection logic removed by [1], we should update the shebang so that the script is executed by python interpreter. [1] 19bcbc0390f24b0e9977a01d08380bf5a4fd39a4 Change-Id: If116e89b75f450b818ed6b8819a0920fff6d34bb --- heat/cloudinit/loguserdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/cloudinit/loguserdata.py b/heat/cloudinit/loguserdata.py index 810e3530d2..e0cbb01593 100755 --- a/heat/cloudinit/loguserdata.py +++ b/heat/cloudinit/loguserdata.py @@ -1,4 +1,4 @@ -#!/bin/bash +#!/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