mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
deploy-ng: Fix hidden import logic
A chunk of code was left out of the previous commit.
This commit is contained in:
parent
e504a49380
commit
ccca2f39cb
@ -1066,6 +1066,8 @@ class Freezer:
|
|||||||
# Check if any new modules we found have "hidden" imports
|
# Check if any new modules we found have "hidden" imports
|
||||||
for origName in list(self.mf.modules.keys()):
|
for origName in list(self.mf.modules.keys()):
|
||||||
hidden = hiddenImports.get(origName, [])
|
hidden = hiddenImports.get(origName, [])
|
||||||
|
for modname in hidden:
|
||||||
|
self.__loadModule(self.ModuleDef(modname, implicit = True))
|
||||||
|
|
||||||
# Now, any new modules we found get added to the export list.
|
# Now, any new modules we found get added to the export list.
|
||||||
for origName in list(self.mf.modules.keys()):
|
for origName in list(self.mf.modules.keys()):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user