From ed07c8c9e254eceff4acf84a437ff269896211fb Mon Sep 17 00:00:00 2001 From: Marianpol Date: Mon, 17 Feb 2020 09:53:11 +0100 Subject: [PATCH] Loading scenario fix --- pyren/mod_ecu_scenario.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyren/mod_ecu_scenario.py b/pyren/mod_ecu_scenario.py index c885081..c2871bf 100755 --- a/pyren/mod_ecu_scenario.py +++ b/pyren/mod_ecu_scenario.py @@ -26,7 +26,7 @@ def playScenario(command, ecu, elm): if os.path.isfile('./'+scenarioName+'.py'): scen = __import__( scenarioName ) - scen.run( elm, ecu, command, '../'+path+scenarioData ) + scen.run( elm, ecu, command, './'+path+scenarioData ) return print "\nThere is scenarium. I do not support them!!!\n"