diff options
author | Unknown <blackjack4494@web.de> | 2020-09-23 03:35:14 +0200 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-09-23 03:35:14 +0200 |
commit | f940c3172afb9b14023ec82986843bf9cd70af2c (patch) | |
tree | 466da7af9e5d291d438bd5789b3d8767104718e3 | |
parent | cdb7547e14e94dbbd66163fefe20fc367ba1474c (diff) | |
download | hypervideo-pre-f940c3172afb9b14023ec82986843bf9cd70af2c.tar.lz hypervideo-pre-f940c3172afb9b14023ec82986843bf9cd70af2c.tar.xz hypervideo-pre-f940c3172afb9b14023ec82986843bf9cd70af2c.zip |
add missing future import
-rw-r--r-- | pyinst.py | 1 | ||||
-rw-r--r-- | pyinst32.py | 1 | ||||
-rw-r--r-- | scripts/update-version-workflow.py | 1 | ||||
-rw-r--r-- | scripts/update-version.py | 1 |
4 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,4 @@ +from __future__ import unicode_literals from PyInstaller.utils.win32.versioninfo import ( VarStruct, VarFileInfo, StringStruct, StringTable, StringFileInfo, FixedFileInfo, VSVersionInfo, SetVersion, diff --git a/pyinst32.py b/pyinst32.py index cb193e33d..eb3acb6c8 100644 --- a/pyinst32.py +++ b/pyinst32.py @@ -1,3 +1,4 @@ +from __future__ import unicode_literals from PyInstaller.utils.win32.versioninfo import ( VarStruct, VarFileInfo, StringStruct, StringTable, StringFileInfo, FixedFileInfo, VSVersionInfo, SetVersion, diff --git a/scripts/update-version-workflow.py b/scripts/update-version-workflow.py index d0b754853..23f90d22c 100644 --- a/scripts/update-version-workflow.py +++ b/scripts/update-version-workflow.py @@ -1,3 +1,4 @@ +from __future__ import unicode_literals from datetime import datetime # import urllib.request diff --git a/scripts/update-version.py b/scripts/update-version.py index d6c560f09..28818e939 100644 --- a/scripts/update-version.py +++ b/scripts/update-version.py @@ -1,3 +1,4 @@ +from __future__ import unicode_literals from datetime import datetime import urllib.request |