diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-12-14 00:12:12 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-01-28 17:25:09 +0100 |
commit | ad709218a31d49320cde855762d579b4a1edc897 (patch) | |
tree | 10bbb9c160a19ab5ab223b0bfc7f59beaf81ee43 | |
parent | d991937b2edc6181c5b7e8cdc0906c8896740e88 (diff) | |
download | tmwa-ad709218a31d49320cde855762d579b4a1edc897.tar.gz tmwa-ad709218a31d49320cde855762d579b4a1edc897.tar.bz2 tmwa-ad709218a31d49320cde855762d579b4a1edc897.tar.xz tmwa-ad709218a31d49320cde855762d579b4a1edc897.zip |
Port 7902 line py2 scripts to py3 with this simple trick (Py2 DEVS HATE THIS!)
-rwxr-xr-x | tools/config.py | 2 | ||||
-rwxr-xr-x | tools/protocol.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/config.py b/tools/config.py index a187c06..fb9ffe3 100755 --- a/tools/config.py +++ b/tools/config.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # coding: utf-8 # config.py - generator for config file parsers diff --git a/tools/protocol.py b/tools/protocol.py index 7419639..cef3acb 100755 --- a/tools/protocol.py +++ b/tools/protocol.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # coding: utf-8 # protocol.py - generator for entire TMWA network protocol |