Skip to content
Snippets Groups Projects

[Flow-v1.3] API change and improved scripts

Merged Boman Romain requested to merge adrien into master
2 files
+ 22
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 6
0
@@ -80,11 +80,17 @@ def findbins(modname, dirB=['build','wavesB'], verb=False): # changer wavesB en
# check the paths one by one
for p in libpath:
if os.path.isdir(p):
if verb:
print "[findbins] adding %s to sys.path" % p
sys.path.append(p)
if verb:
print "[findbins] sys.path =", sys.path
break
else:
raise Exception("[findbins] '%s' not found!" % libpath)
#exec("import %s" % modwrap)
#mod = sys.modules[modwrap]
mod = __import__(modwrap)
print '[findbins] loading ', mod.__file__
Loading