In instrument.py at lines 385 and 397 there is a reference to the labels of the names dictionary.
line 385: indf = names.index('ndf') - 2line 392: ib2b = names.index('ba2ba')
This raises an error because the labels have been defined as byte streams (i.e. b'ndf' and b'ba2ba)
Therefore the above lines should change to:
line 385: indf = names.index(b'ndf') - 2line 392: ib2b = names.index(b'ba2ba')
In
instrument.py
at lines 385 and 397 there is a reference to the labels of thenames
dictionary.line 385: indf = names.index('ndf') - 2
line 392: ib2b = names.index('ba2ba')
This raises an error because the labels have been defined as byte streams (i.e.b'ndf'
andb'ba2ba
) Therefore the above lines should change to:line 385: indf = names.index(b'ndf') - 2
line 392: ib2b = names.index(b'ba2ba')