fixed path object overload

This commit is contained in:
Remi Ehounou
2021-05-24 00:32:30 -04:00
parent f415bc074f
commit 533feeca9a
2 changed files with 2 additions and 2 deletions

View File

@ -219,8 +219,8 @@ def representfunc(funcpath, forced = False):
def doe(heuristicpath, testfunctionpaths, args):
for i,path in enumerate(testfunctionpaths):
if path.find('@') == 0:
for i,funpath in enumerate(testfunctionpaths):
if funpath.find('@') == 0:
testfunctionpaths[i] = path.dirname(__file__) + '/TestFunctions/' + testfunctionpaths[1:]
if (heuristicpath.find('@') == 0): heuristicpath = path.dirname(__file__) + '/TestFunctions/' + heuristicpath[1:]

Binary file not shown.