1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
From: Laurent Bigonville <bigon@debian.org>
Date: Fri, 20 Nov 2015 01:18:04 +0100
Subject: Switch to python3
---
src/gtk3_chooserbutton.py | 2 +-
src/gtk3_niceexpander.py | 2 +-
src/tests/python/firewalld_config.py | 2 +-
src/tests/python/firewalld_direct.py | 2 +-
src/tests/python/firewalld_misc.py | 2 +-
src/tests/python/firewalld_rich.py | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/gtk3_chooserbutton.py b/src/gtk3_chooserbutton.py
index dc6ead2..9f6666d 100755
--- a/src/gtk3_chooserbutton.py
+++ b/src/gtk3_chooserbutton.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python -Es
+#!/usr/bin/python3 -Es
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2008,2012 Red Hat, Inc.
diff --git a/src/gtk3_niceexpander.py b/src/gtk3_niceexpander.py
index 66a09c6..db74a36 100644
--- a/src/gtk3_niceexpander.py
+++ b/src/gtk3_niceexpander.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python -Es
+#!/usr/bin/python3 -Es
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2016 Red Hat, Inc.
diff --git a/src/tests/python/firewalld_config.py b/src/tests/python/firewalld_config.py
index 3a832e9..844e27a 100755
--- a/src/tests/python/firewalld_config.py
+++ b/src/tests/python/firewalld_config.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2010-2012 Red Hat, Inc.
diff --git a/src/tests/python/firewalld_direct.py b/src/tests/python/firewalld_direct.py
index 124c025..4e07a92 100755
--- a/src/tests/python/firewalld_direct.py
+++ b/src/tests/python/firewalld_direct.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2012 Red Hat, Inc.
diff --git a/src/tests/python/firewalld_misc.py b/src/tests/python/firewalld_misc.py
index a160eef..fbc1a73 100755
--- a/src/tests/python/firewalld_misc.py
+++ b/src/tests/python/firewalld_misc.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2010-2012 Red Hat, Inc.
diff --git a/src/tests/python/firewalld_rich.py b/src/tests/python/firewalld_rich.py
index a3fba6b..0523db0 100755
--- a/src/tests/python/firewalld_rich.py
+++ b/src/tests/python/firewalld_rich.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2013 Red Hat, Inc.
|