From 3424a1a6f8f91292eca6373ba0cd3fb5170c1648 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sat, 15 Feb 2020 18:17:37 +0100 Subject: [PATCH] point all shebangs to python 3 --- psutil/tests/__main__.py | 2 +- psutil/tests/runner.py | 2 +- psutil/tests/test_aix.py | 2 +- psutil/tests/test_bsd.py | 2 +- psutil/tests/test_connections.py | 2 +- psutil/tests/test_contracts.py | 2 +- psutil/tests/test_linux.py | 2 +- psutil/tests/test_memory_leaks.py | 2 +- psutil/tests/test_misc.py | 2 +- psutil/tests/test_osx.py | 2 +- psutil/tests/test_posix.py | 2 +- psutil/tests/test_process.py | 2 +- psutil/tests/test_sunos.py | 2 +- psutil/tests/test_system.py | 2 +- psutil/tests/test_unicode.py | 2 +- psutil/tests/test_windows.py | 2 +- scripts/battery.py | 2 +- scripts/cpu_distribution.py | 2 +- scripts/disk_usage.py | 2 +- scripts/fans.py | 2 +- scripts/free.py | 2 +- scripts/ifconfig.py | 2 +- scripts/internal/bench_oneshot.py | 2 +- scripts/internal/bench_oneshot_2.py | 2 +- scripts/internal/check_broken_links.py | 4 ++-- scripts/internal/fix_flake8.py | 2 +- scripts/internal/generate_manifest.py | 2 +- scripts/internal/print_access_denied.py | 2 +- scripts/internal/print_announce.py | 2 +- scripts/internal/print_api_speed.py | 2 +- scripts/internal/print_timeline.py | 2 +- scripts/internal/purge_installation.py | 2 +- scripts/internal/win_download_wheels.py | 2 +- scripts/internal/winmake.py | 2 +- scripts/iotop.py | 2 +- scripts/killall.py | 2 +- scripts/meminfo.py | 2 +- scripts/netstat.py | 2 +- scripts/nettop.py | 2 +- scripts/pidof.py | 2 +- scripts/pmap.py | 2 +- scripts/procinfo.py | 2 +- scripts/procsmem.py | 2 +- scripts/ps.py | 2 +- scripts/pstree.py | 2 +- scripts/sensors.py | 2 +- scripts/temperatures.py | 2 +- scripts/top.py | 2 +- scripts/who.py | 2 +- scripts/winservices.py | 2 +- setup.py | 2 +- 51 files changed, 52 insertions(+), 52 deletions(-) mode change 100644 => 100755 psutil/tests/test_unicode.py mode change 100644 => 100755 scripts/internal/bench_oneshot_2.py mode change 100644 => 100755 scripts/internal/fix_flake8.py mode change 100644 => 100755 scripts/internal/print_access_denied.py mode change 100644 => 100755 scripts/internal/print_api_speed.py mode change 100644 => 100755 scripts/internal/print_timeline.py diff --git a/psutil/tests/__main__.py b/psutil/tests/__main__.py index 68710d44f..9dd0804cc 100755 --- a/psutil/tests/__main__.py +++ b/psutil/tests/__main__.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/runner.py b/psutil/tests/runner.py index 4c3359ddb..589117b80 100755 --- a/psutil/tests/runner.py +++ b/psutil/tests/runner.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_aix.py b/psutil/tests/test_aix.py index 1757e3e5d..7171232e0 100755 --- a/psutil/tests/test_aix.py +++ b/psutil/tests/test_aix.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola' # Copyright (c) 2017, Arnon Yaari diff --git a/psutil/tests/test_bsd.py b/psutil/tests/test_bsd.py index e525e6672..899875d07 100755 --- a/psutil/tests/test_bsd.py +++ b/psutil/tests/test_bsd.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_connections.py b/psutil/tests/test_connections.py index c7fe19926..972ac9d58 100755 --- a/psutil/tests/test_connections.py +++ b/psutil/tests/test_connections.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_contracts.py b/psutil/tests/test_contracts.py index 5e258b301..01ebe1416 100755 --- a/psutil/tests/test_contracts.py +++ b/psutil/tests/test_contracts.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_linux.py b/psutil/tests/test_linux.py index 97946a0bb..e51f8bd57 100755 --- a/psutil/tests/test_linux.py +++ b/psutil/tests/test_linux.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_memory_leaks.py b/psutil/tests/test_memory_leaks.py index 31a632a47..f9cad70fd 100755 --- a/psutil/tests/test_memory_leaks.py +++ b/psutil/tests/test_memory_leaks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_misc.py b/psutil/tests/test_misc.py index 616a36545..c20cd9413 100755 --- a/psutil/tests/test_misc.py +++ b/psutil/tests/test_misc.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. diff --git a/psutil/tests/test_osx.py b/psutil/tests/test_osx.py index 723b255ee..e4e77f935 100755 --- a/psutil/tests/test_osx.py +++ b/psutil/tests/test_osx.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_posix.py b/psutil/tests/test_posix.py index e405393b7..83c1b22b1 100755 --- a/psutil/tests/test_posix.py +++ b/psutil/tests/test_posix.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. diff --git a/psutil/tests/test_process.py b/psutil/tests/test_process.py index e5ff6e45c..987bdf38b 100755 --- a/psutil/tests/test_process.py +++ b/psutil/tests/test_process.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_sunos.py b/psutil/tests/test_sunos.py index 94405d41b..e3beb625b 100755 --- a/psutil/tests/test_sunos.py +++ b/psutil/tests/test_sunos.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_system.py b/psutil/tests/test_system.py index 0d3f43753..c32e8a737 100755 --- a/psutil/tests/test_system.py +++ b/psutil/tests/test_system.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/psutil/tests/test_unicode.py b/psutil/tests/test_unicode.py old mode 100644 new mode 100755 index 81a28807c..ac2d4f69e --- a/psutil/tests/test_unicode.py +++ b/psutil/tests/test_unicode.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. diff --git a/psutil/tests/test_windows.py b/psutil/tests/test_windows.py index 934ea8476..f68885d0c 100755 --- a/psutil/tests/test_windows.py +++ b/psutil/tests/test_windows.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: UTF-8 -* # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. diff --git a/scripts/battery.py b/scripts/battery.py index abbad8785..0da2b9588 100755 --- a/scripts/battery.py +++ b/scripts/battery.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/cpu_distribution.py b/scripts/cpu_distribution.py index 839d31dff..08997797c 100755 --- a/scripts/cpu_distribution.py +++ b/scripts/cpu_distribution.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/disk_usage.py b/scripts/disk_usage.py index 1860401fd..901dbf8c2 100755 --- a/scripts/disk_usage.py +++ b/scripts/disk_usage.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/fans.py b/scripts/fans.py index 7a0ccf91d..179af6312 100755 --- a/scripts/fans.py +++ b/scripts/fans.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/free.py b/scripts/free.py index 82e962ffc..000323c5d 100755 --- a/scripts/free.py +++ b/scripts/free.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/ifconfig.py b/scripts/ifconfig.py index ad62a44f7..cfd02f0da 100755 --- a/scripts/ifconfig.py +++ b/scripts/ifconfig.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/bench_oneshot.py b/scripts/internal/bench_oneshot.py index 28ad4bac8..436bdd6b0 100755 --- a/scripts/internal/bench_oneshot.py +++ b/scripts/internal/bench_oneshot.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/bench_oneshot_2.py b/scripts/internal/bench_oneshot_2.py old mode 100644 new mode 100755 index becf930c8..3867391b4 --- a/scripts/internal/bench_oneshot_2.py +++ b/scripts/internal/bench_oneshot_2.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/check_broken_links.py b/scripts/internal/check_broken_links.py index 731348186..1a0761161 100755 --- a/scripts/internal/check_broken_links.py +++ b/scripts/internal/check_broken_links.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola', Himanshu Shekhar. # All rights reserved. Use of this source code is governed by a @@ -175,7 +175,7 @@ def get_urls(fname): return parse_c(fname) else: with open(fname, 'rt', errors='ignore') as f: - if f.readline().strip().startswith('#!/usr/bin/env python'): + if f.readline().strip().startswith('#!/usr/bin/env python3'): return parse_py(fname) return parse_generic(fname) diff --git a/scripts/internal/fix_flake8.py b/scripts/internal/fix_flake8.py old mode 100644 new mode 100755 index 5aa84db5c..7cde608bb --- a/scripts/internal/fix_flake8.py +++ b/scripts/internal/fix_flake8.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/generate_manifest.py b/scripts/internal/generate_manifest.py index f6cf0eaa0..c0be6d99d 100755 --- a/scripts/internal/generate_manifest.py +++ b/scripts/internal/generate_manifest.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/print_access_denied.py b/scripts/internal/print_access_denied.py old mode 100644 new mode 100755 index 9123ba6d0..81d192f0c --- a/scripts/internal/print_access_denied.py +++ b/scripts/internal/print_access_denied.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/print_announce.py b/scripts/internal/print_announce.py index 7fbe74f3d..9569c3674 100755 --- a/scripts/internal/print_announce.py +++ b/scripts/internal/print_announce.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/print_api_speed.py b/scripts/internal/print_api_speed.py old mode 100644 new mode 100755 index 85d1cfc5b..e39a1baa7 --- a/scripts/internal/print_api_speed.py +++ b/scripts/internal/print_api_speed.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/print_timeline.py b/scripts/internal/print_timeline.py old mode 100644 new mode 100755 index 9bf6e9d13..64608b26b --- a/scripts/internal/print_timeline.py +++ b/scripts/internal/print_timeline.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/purge_installation.py b/scripts/internal/purge_installation.py index d93017195..50c00463c 100755 --- a/scripts/internal/purge_installation.py +++ b/scripts/internal/purge_installation.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/win_download_wheels.py b/scripts/internal/win_download_wheels.py index 0cb37afe4..3720dd96c 100755 --- a/scripts/internal/win_download_wheels.py +++ b/scripts/internal/win_download_wheels.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index fe0a73dce..aba3595cf 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/iotop.py b/scripts/iotop.py index 6a5d3fa96..c3afd0715 100755 --- a/scripts/iotop.py +++ b/scripts/iotop.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/killall.py b/scripts/killall.py index f9cc92018..7bbcd75a8 100755 --- a/scripts/killall.py +++ b/scripts/killall.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/meminfo.py b/scripts/meminfo.py index 0b15ff2b7..550fcd012 100755 --- a/scripts/meminfo.py +++ b/scripts/meminfo.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/netstat.py b/scripts/netstat.py index af56d03d3..fe3bfe402 100755 --- a/scripts/netstat.py +++ b/scripts/netstat.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/nettop.py b/scripts/nettop.py index 45b8879fa..ce647c9dd 100755 --- a/scripts/nettop.py +++ b/scripts/nettop.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # $Id: iotop.py 1160 2011-10-14 18:50:36Z g.rodola@gmail.com $ # diff --git a/scripts/pidof.py b/scripts/pidof.py index c1042f4f8..ee18aae4c 100755 --- a/scripts/pidof.py +++ b/scripts/pidof.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola', karthikrev. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/pmap.py b/scripts/pmap.py index 300f23e9d..5f7246a15 100755 --- a/scripts/pmap.py +++ b/scripts/pmap.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/procinfo.py b/scripts/procinfo.py index 161b50575..01974513f 100755 --- a/scripts/procinfo.py +++ b/scripts/procinfo.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/procsmem.py b/scripts/procsmem.py index 4f8b4c84b..259d79d42 100755 --- a/scripts/procsmem.py +++ b/scripts/procsmem.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/ps.py b/scripts/ps.py index 8467cca6f..540c032a7 100755 --- a/scripts/ps.py +++ b/scripts/ps.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/pstree.py b/scripts/pstree.py index 8e4c9f957..0005e4a18 100755 --- a/scripts/pstree.py +++ b/scripts/pstree.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/sensors.py b/scripts/sensors.py index bbf3ac908..726af3d2c 100755 --- a/scripts/sensors.py +++ b/scripts/sensors.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. diff --git a/scripts/temperatures.py b/scripts/temperatures.py index 15b9156b8..e83df4403 100755 --- a/scripts/temperatures.py +++ b/scripts/temperatures.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. diff --git a/scripts/top.py b/scripts/top.py index 69890e27c..0b17471d5 100755 --- a/scripts/top.py +++ b/scripts/top.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/who.py b/scripts/who.py index 748d936c9..c2299eb09 100755 --- a/scripts/who.py +++ b/scripts/who.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/scripts/winservices.py b/scripts/winservices.py index 677248359..8792f752e 100755 --- a/scripts/winservices.py +++ b/scripts/winservices.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/setup.py b/setup.py index 76c4ddbaa..6504d248f 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be