This fixes a bug where algebras constructed after calling Eprint would produce multivectors whose coefficients had name A__x\u001b[0m instead of just A__x:
In [1]: from galgebra.ga import Ga; from galgebra.printer import Eprint
In [2]: g, e1, e2 = Ga.build('e_1 e_2')
In [3]: g.mv('A', 'vector').get_coefs(1)[0].name
Out[3]: 'A__1'
In [4]: Eprint()
Out[4]: <galgebra.printer.Eprint at 0x2a5c74bd220>
In [7]: g, e1, e2 = Ga.build('e_1 e_2')
In [8]: g.mv('A', 'vector').get_coefs(1)[0].name
Out[8]: 'A__1\x1b[0m'
This fixes a bug where algebras constructed after calling
Eprint
would produce multivectors whose coefficients had nameA__x\u001b[0m
instead of justA__x
: