diff options
author | dragmz <dragmz@gmail.com> | 2018-07-28 18:13:48 +0200 |
---|---|---|
committer | dragmz <dragmz@gmail.com> | 2018-07-28 18:13:48 +0200 |
commit | 8fd337e2df27cec7dafa8bda5fcc03dfe6930a51 (patch) | |
tree | 37210f9fd080a28dff7df83a2f787b9671157325 /core | |
parent | 90298ddf01622ec4d8a50deaf7c351a766b9e78a (diff) |
fix windows build using python 3.7
fixes NameError (missing "subprocess_main" and "basestring")
Diffstat (limited to 'core')
-rw-r--r-- | core/make_binders.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/make_binders.py b/core/make_binders.py index f1a10829a3..4c61b90d99 100644 --- a/core/make_binders.py +++ b/core/make_binders.py @@ -1,6 +1,4 @@ # -*- coding: ibm850 -*- -from platform_methods import subprocess_main - template_typed = """ #ifdef TYPED_METHOD_BIND @@ -274,4 +272,5 @@ def run(target, source, env): if __name__ == '__main__': + from platform_methods import subprocess_main subprocess_main(globals()) |