From 3c46e8d5fa25be7a95b8e7f313f8a9e7c0be21c2 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Fri, 27 Sep 2019 19:20:57 +0100 Subject: [PATCH] All executable files invoked with #!/usr/bin/env python3 --- EDMC.py | 2 +- EDMarketConnector.py | 2 +- collate.py | 2 +- coriolis.py | 2 +- eddb.py | 2 +- l10n.py | 2 +- prefs.py | 1 - setup.py | 2 +- 8 files changed, 7 insertions(+), 8 deletions(-) diff --git a/EDMC.py b/EDMC.py index 91f8e589..cf5e29c0 100755 --- a/EDMC.py +++ b/EDMC.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Command-line interface. Requires prior setup through the GUI. # diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 797ea88a..3e926ebb 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- from builtins import str diff --git a/collate.py b/collate.py index e8b2a728..e808737f 100755 --- a/collate.py +++ b/collate.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Script for collating lists of seen commodities, modules and ships from dumps of the Companion API output # diff --git a/coriolis.py b/coriolis.py index e9d7033d..bf694d37 100755 --- a/coriolis.py +++ b/coriolis.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # build ship and module databases from https://github.com/EDCD/coriolis-data/ # diff --git a/eddb.py b/eddb.py index 539e65d9..a3f07229 100755 --- a/eddb.py +++ b/eddb.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # build databases from files systems.csv and stations.json from http://eddb.io/api # diff --git a/l10n.py b/l10n.py index 506a1422..7a181f8d 100755 --- a/l10n.py +++ b/l10n.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # # Localization with gettext is a pain on non-Unix systems. Use OSX-style strings files instead. # diff --git a/prefs.py b/prefs.py index 0d104628..9fa0c5d6 100644 --- a/prefs.py +++ b/prefs.py @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8 -*- import os from os.path import dirname, expanduser, expandvars, exists, isdir, join, normpath diff --git a/setup.py b/setup.py index 775d8d99..5aad4d19 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ This is a setup.py script generated by py2applet