2019-01-01 19:42:53 -06:00
|
|
|
from __future__ import unicode_literals
|
2016-06-02 17:42:44 -05:00
|
|
|
import win32com.client
|
|
|
|
def fix():
|
|
|
|
if win32com.client.gencache.is_readonly == True:
|
|
|
|
win32com.client.gencache.is_readonly = False
|
|
|
|
win32com.client.gencache.Rebuild()
|