21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 | import os
# provides another export window, and custom file generation - does not use action.save()
class cachereset():
meta = plugin_meta()
module = __name__
# Register in configwin
def __init__(self, parent):
# hook
if not parent:
return
parent.hooks["config_load"].append(self.dialog_update) |
|
| 21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 | import os
# provides another export window, and custom file generation - does not use action.save()
class cachereset():
meta = plugin_meta()
module = 'cachereset'
# Register in configwin
def __init__(self, parent):
# hook
if not parent:
return
parent.hooks["config_load"].append(self.dialog_update) |