solve properly the problem of display graphic board like board_manufacturing : for my first File "matplotlib\figure.pyo", line 623, in Figure TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple' : let matplotlib 0.98.3 installed (because it has _backend_gdk.pyc, then than in matplotlib 0.98.5 it is not present and needed in module matplotlib.backend.backend_gdk.py ) install matplotlib 0.98.5
for the error % none type and dict in mlab : reason we can't use 2 different types go to C:\Python25\Lib\site-packages\matplotlib open the file mlab.py for the line :psd.__doc__ = psd.__doc__ % kwdocd change to : psd.__doc__ = cbook.dedent(psd.__doc__) % martist.kwdocd for the line :csd.__doc__ = csd.__doc__ % kwdocd change to : csd.__doc__ = cbook.dedent(csd.__doc__) % martist.kwdocd for the line :specgram.__doc__ = specgram.__doc__ % kwdocd change to : specgram.__doc__ = cbook.dedent(specgram.__doc__) % martist.kwdocd for the line :cohere.__doc__ = cohere.__doc__ % kwdocd change to : cohere.__doc__ = cbook.dedent(cohere.__doc__) % martist.kwdocd there is finally one error again when you choose in preferences with gtk client the timezone like Europe Paris, probleme in dateutil parse.pyo. Hope to solve this but try a lot of time to reinstall pytz dateutil (by default, matplotlib install pytz and dateutil). A+ ------------------------ Let us safeguard the ice floe, else the penguins will disappear ! -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=38426#38426 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
