From f36830bd327a652e442854c36ab61d481fad5eae Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 18 Oct 2023 00:46: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: Id2a0ce9502cb86867ecd4613f2e6c1b3ccf54786 --- tools/send_test_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/send_test_data.py b/tools/send_test_data.py index 6cc8fafce9..8ef888b0db 100755 --- a/tools/send_test_data.py +++ b/tools/send_test_data.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