Skip to content

Commit ceff580

Browse files
committed
Fixed engines.precache classes not unregistering on script unload.
1 parent e771676 commit ceff580

File tree

1 file changed

+9
-0
lines changed
  • addons/source-python/packages/source-python/engines

1 file changed

+9
-0
lines changed

addons/source-python/packages/source-python/engines/precache.py

+9
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
# Python Imports
99
# Contextlib
1010
from contextlib import suppress
11+
# Inspect
12+
from inspect import getmodule
13+
from inspect import stack
1114

1215
# Site-Package Imports
1316
# Path
@@ -56,6 +59,12 @@ def __init__(self, path, download=False):
5659
# Call Path's __init__ with the given path
5760
super(_PrecacheBase, self).__init__(path)
5861

62+
# Get the calling module
63+
caller = getmodule(stack()[1][0])
64+
65+
# Set the _calling_module attribute for the instance
66+
self._calling_module = caller.__name__
67+
5968
# Precache the instance
6069
self._precache_method(self)
6170

0 commit comments

Comments
 (0)