mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2026-03-06 09:27:33 +01: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()
|