diff options
Diffstat (limited to 'kcc.py')
| -rwxr-xr-x | kcc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcc.py b/kcc.py index 445b0a3..afd4796 100755 --- a/kcc.py +++ b/kcc.py @@ -39,7 +39,7 @@ elif sys.platform.startswith('win'): class _Popen(forking.Popen): def __init__(self, *args, **kw): if hasattr(sys, 'frozen'): - # noinspection PyProtectedMember + # noinspection PyUnresolvedReferences,PyProtectedMember os.putenv('_MEIPASS2', sys._MEIPASS) try: super(_Popen, self).__init__(*args, **kw) |