From a624f8b5994a4de5bb0752b3b118bf411f8cf9fc Mon Sep 17 00:00:00 2001 From: Diego Pasqualin Date: Mon, 26 Aug 2019 14:54:19 +0200 Subject: [PATCH] Fix python shebang following PEP 394 recommendation --- utils/check_server_for_updates.py | 2 +- utils/osm_file_date.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/check_server_for_updates.py b/utils/check_server_for_updates.py index 05b69657..bcc9d0ba 100755 --- a/utils/check_server_for_updates.py +++ b/utils/check_server_for_updates.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import sys from osmium.replication import server diff --git a/utils/osm_file_date.py b/utils/osm_file_date.py index b8c54a7c..0443e6ac 100755 --- a/utils/osm_file_date.py +++ b/utils/osm_file_date.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import osmium import sys -- 2.39.5