Update engine.py

This commit is contained in:
1122455801 2019-08-06 20:02:16 +08:00
parent 8dfc72591a
commit b17a26b508

View File

@ -755,10 +755,10 @@ class CtaEngine(BaseEngine):
if filename.endswith(".py"):
strategy_module_name = ".".join(
[module_name, filename.replace(".py", "")])
elif filename.endswith(".pyd"):
elif filename.endswith(".cp37-win_amd64.pyd"):
strategy_module_name = ".".join(
[module_name, filename.replace(".pyd", "")])
[module_name, filename.replace(".cp37-win_amd64.pyd", "")])
self.load_strategy_class_from_module(strategy_module_name)
def load_strategy_class_from_module(self, module_name: str):