diff options
author | Anton Tananaev <anton@traccar.org> | 2022-11-27 16:17:00 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-11-27 16:17:00 -0800 |
commit | 938872ff5e2fad867720ec9c971ea432ba623c2c (patch) | |
tree | 56f2ae76e6b41aeecf29408eb97c5785ae0e7bcb | |
parent | 1a08e7cc2612539e6e16bb17b76a8d6866bb24f7 (diff) | |
download | trackermap-server-938872ff5e2fad867720ec9c971ea432ba623c2c.tar.gz trackermap-server-938872ff5e2fad867720ec9c971ea432ba623c2c.tar.bz2 trackermap-server-938872ff5e2fad867720ec9c971ea432ba623c2c.zip |
Update python version
-rwxr-xr-x | tools/test-commands.py | 2 | ||||
-rwxr-xr-x | tools/test-generator.py | 2 | ||||
-rwxr-xr-x | tools/test-integration.py | 2 | ||||
-rwxr-xr-x | tools/test-map.py | 2 | ||||
-rwxr-xr-x | tools/test-performance.py | 2 | ||||
-rwxr-xr-x | tools/test-trips.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/tools/test-commands.py b/tools/test-commands.py index 040efb177..6e310051a 100755 --- a/tools/test-commands.py +++ b/tools/test-commands.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import socket import binascii diff --git a/tools/test-generator.py b/tools/test-generator.py index d49b98744..6e30c7fea 100755 --- a/tools/test-generator.py +++ b/tools/test-generator.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import sys import math diff --git a/tools/test-integration.py b/tools/test-integration.py index 34f81ee83..f926a8ae9 100755 --- a/tools/test-integration.py +++ b/tools/test-integration.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import sys import os diff --git a/tools/test-map.py b/tools/test-map.py index ab4466b09..5808c1fbb 100755 --- a/tools/test-map.py +++ b/tools/test-map.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import urllib import urllib2 diff --git a/tools/test-performance.py b/tools/test-performance.py index ec31e9b86..a2dd6e66d 100755 --- a/tools/test-performance.py +++ b/tools/test-performance.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import asyncio import random diff --git a/tools/test-trips.py b/tools/test-trips.py index a71357fdb..267752fbb 100755 --- a/tools/test-trips.py +++ b/tools/test-trips.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import urllib import httplib |