Passing e.g. -dOctopussy=2 to meqtree-pipeliner.py gives this error
Traceback (most recent call last):
File "/usr/bin/meqtree-pipeliner.py", line 61, in <module>
debuglevels[context] = int(level);
NameError: name 'debuglevels' is not defined
The culprit is this line, which stuffs the options in a dict which isn't defined (and nothing gets done with it later).
Passing e.g.
-dOctopussy=2
to meqtree-pipeliner.py gives this errorThe culprit is this line, which stuffs the options in a dict which isn't defined (and nothing gets done with it later).