diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-07-06 14:09:16 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-07-06 14:09:16 +0300 |
commit | 3a2e9f20f60561f9b43d0abc4ec38ea62a0b3ef5 (patch) | |
tree | 155ebefe2054b6f697ef615aeb2a8672aea559be /tools/make-frozen.py | |
parent | 7e66b859b2cfbd09bbe0d4307868b0d1a0ad818f (diff) |
tools/make-frozen.py: Add Python2 compatibility.
Diffstat (limited to 'tools/make-frozen.py')
-rwxr-xr-x | tools/make-frozen.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/make-frozen.py b/tools/make-frozen.py index 340a78861..912c01ea5 100755 --- a/tools/make-frozen.py +++ b/tools/make-frozen.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Create frozen modules structure for MicroPython. # @@ -17,6 +17,7 @@ # Include frozen.c in your build, having defined MICROPY_MODULE_FROZEN in # config. # +from __future__ import print_function import sys import os |