2019-06-06 11:52:23 -05:00
|
|
|
from __future__ import unicode_literals
|
2015-06-26 17:52:49 -05:00
|
|
|
import win32com.client
|
|
|
|
def fix():
|
|
|
|
if win32com.client.gencache.is_readonly == True:
|
|
|
|
win32com.client.gencache.is_readonly = False
|
|
|
|
win32com.client.gencache.Rebuild()
|