linux-firmware/change-python-script-shebang-to-python3.patch

25 lines
582 B
Diff
Raw Normal View History

From 1dfd5bcbe726900519ee832d784f1e8b749def22 Mon Sep 17 00:00:00 2001
From: yuxiangyang <yuxiangyang4@huawei.com>
Date: Thu, 20 Feb 2020 22:43:37 -0500
Subject: [PATCH] change firmware python script shebang to python3
Signed-off-by: yuxiangyang <yuxiangyang4@huawei.com>
---
check_whence.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/check_whence.py b/check_whence.py
index 662c609..66a2774 100755
--- a/check_whence.py
+++ b/check_whence.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
import os, re, sys
2020-07-27 11:33:45 +08:00
from io import open
--
1.8.3.1