mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 19:28:09 -06:00
7 lines
223 B
Python
7 lines
223 B
Python
from __future__ import unicode_literals
|
|
import win32com.client
|
|
def fix():
|
|
if win32com.client.gencache.is_readonly == True:
|
|
win32com.client.gencache.is_readonly = False
|
|
win32com.client.gencache.Rebuild()
|