From c4b9bdb48bb5c4f69e296c50804c74e8948582fb Mon Sep 17 00:00:00 2001 From: Claudio-Daniel Freire Date: Wed, 5 Oct 2011 16:07:52 -0300 Subject: [PATCH] Fix pythonpath --- examples/POPI/run_one_experiment.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/POPI/run_one_experiment.py b/examples/POPI/run_one_experiment.py index 0b94995b..02806545 100644 --- a/examples/POPI/run_one_experiment.py +++ b/examples/POPI/run_one_experiment.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from nepi.core.execute import ExperimentController import os +import os.path import re import time import commands @@ -15,6 +15,10 @@ import sys import cPickle import gzip +sys.path.append(os.path.abspath("../../src")) + +from nepi.core.execute import ExperimentController + class PopiExperiment(object): def run(self, duration, xml_filepath, testset, results_dir, iteration): app_guid = 8 -- 2.43.0