blob: e345d28031930c09d1b719ec18f07f0aa738e211 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From 189528e879e4099b44aae26a2af0cb16aaa96db6 Mon Sep 17 00:00:00 2001
2From: goapunk <goapunk@riseup.net>
3Date: Mon, 13 Sep 2021 13:45:41 +0200
4Subject: [PATCH] build: use python3 everywhere
5
6---
7 build-aux/qmi-codegen/qmi-codegen | 2 +-
8 examples/simple-tester-python/simple-tester-python | 2 +-
9 2 files changed, 2 insertions(+), 2 deletions(-)
10
11diff --git a/build-aux/qmi-codegen/qmi-codegen b/build-aux/qmi-codegen/qmi-codegen
12index 1fea7c1..1092c8e 100755
13--- a/build-aux/qmi-codegen/qmi-codegen
14+++ b/build-aux/qmi-codegen/qmi-codegen
15@@ -1,4 +1,4 @@
16-#!/usr/bin/env python
17+#!/usr/bin/env python3
18 # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
19 #
20 # This program is free software; you can redistribute it and/or modify it under
21diff --git a/examples/simple-tester-python/simple-tester-python b/examples/simple-tester-python/simple-tester-python
22index af9065a..a35e505 100755
23--- a/examples/simple-tester-python/simple-tester-python
24+++ b/examples/simple-tester-python/simple-tester-python
25@@ -1,4 +1,4 @@
26-#!/usr/bin/env python
27+#!/usr/bin/env python3
28 # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
29 #
30 # This program is free software; you can redistribute it and/or modify it under
31--
322.34.1
33