about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <[email protected]>2017-03-25 08:05:28 +0100
committerPaweł Jastrzębski <[email protected]>2017-03-25 08:05:28 +0100
commit6526b139fdcd3b4c4f33507e96da4e8973203bd7 (patch)
tree322687bb17704b1b6675033159e10070e534347a /kcc.py
parentReimplemented HQ Panel View (close #223) (diff)
downloadkcc-6526b139fdcd3b4c4f33507e96da4e8973203bd7.tar.gz
kcc-6526b139fdcd3b4c4f33507e96da4e8973203bd7.tar.bz2
kcc-6526b139fdcd3b4c4f33507e96da4e8973203bd7.zip
Code cleanup
Diffstat (limited to 'kcc.py')
-rwxr-xr-xkcc.py2
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)