summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanagiotis Vasilopoulos <hello@alwayslivid.com>2021-04-17 13:16:15 +0300
committerPanagiotis Vasilopoulos <hello@alwayslivid.com>2021-04-17 13:16:15 +0300
commitfd19599f3e62246d37e43380756d162642fe8d9b (patch)
tree4673a9ae9e92983504db01ce712ba6c3e03b4785
parent77470e73f9807139673d1ac6994b340297ad71c7 (diff)
bin2c: Don't assume that the default Python version is higher than 2
-rw-r--r--tools/bin2c.py4
1 files 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()