From fd19599f3e62246d37e43380756d162642fe8d9b Mon Sep 17 00:00:00 2001 From: Panagiotis Vasilopoulos Date: Sat, 17 Apr 2021 13:16:15 +0300 Subject: [PATCH] bin2c: Don't assume that the default Python version is higher than 2 --- tools/bin2c.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bin2c.py b/tools/bin2c.py index 1d66656a..e5fdb158 100644 --- a/tools/bin2c.py +++ b/tools/bin2c.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 #-*- coding: utf-8 -*- """ bin2c @@ -71,4 +71,4 @@ def main(): if __name__ == '__main__': - main() \ No newline at end of file + main()