[libvirt] [PATCH 2/2] python: Drop explicit version where possible

Andrea Bolognani abologna at redhat.com
Thu Mar 15 17:00:38 UTC 2018


Some of our scripts are known to work both with Python 2 and
Python 3, so for them we shouldn't be forcing any specific
version of the interpreter when they're called directly.

Signed-off-by: Andrea Bolognani <abologna at redhat.com>
---
 docs/reformat-news.py       | 2 +-
 src/esx/esx_vi_generator.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/reformat-news.py b/docs/reformat-news.py
index fe08bf6d91..d8726f1a1c 100755
--- a/docs/reformat-news.py
+++ b/docs/reformat-news.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python
 
 # reformat-news.py: Reformat the NEWS file properly
 #
diff --git a/src/esx/esx_vi_generator.py b/src/esx/esx_vi_generator.py
index 6ce017d794..545f8bdda3 100755
--- a/src/esx/esx_vi_generator.py
+++ b/src/esx/esx_vi_generator.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python
 
 #
 # esx_vi_generator.py: generates most of the SOAP type mapping code
-- 
2.14.3




More information about the libvir-list mailing list