Forgot subprocess
This commit is contained in:
parent
da7b3a7bd1
commit
98f3058876
1 changed files with 6 additions and 0 deletions
|
|
@ -119,6 +119,12 @@ def run_handler(project_root, module_name, filename, estimate_only):
|
||||||
elif "Plugin" in module_name:
|
elif "Plugin" in module_name:
|
||||||
from modules.rpgmakerplugin import handlePlugin
|
from modules.rpgmakerplugin import handlePlugin
|
||||||
handler = handlePlugin
|
handler = handlePlugin
|
||||||
|
elif "Aquedi4" in module_name:
|
||||||
|
from modules.aquedi4 import handleAquedi4
|
||||||
|
handler = handleAquedi4
|
||||||
|
elif "SRPG" in module_name:
|
||||||
|
from modules.srpg import handleSRPG
|
||||||
|
handler = handleSRPG
|
||||||
else:
|
else:
|
||||||
print(f"ERROR:Unknown module: {module_name}")
|
print(f"ERROR:Unknown module: {module_name}")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue