From: <ds...@us...> - 2007-08-16 21:40:14
|
Revision: 3712 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3712&view=rev Author: dsdale Date: 2007-08-16 14:28:24 -0700 (Thu, 16 Aug 2007) Log Message: ----------- fixed bug in traited config: text.markup Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/config/mplconfig.py Modified: trunk/matplotlib/lib/matplotlib/config/mplconfig.py =================================================================== --- trunk/matplotlib/lib/matplotlib/config/mplconfig.py 2007-08-16 19:43:35 UTC (rev 3711) +++ trunk/matplotlib/lib/matplotlib/config/mplconfig.py 2007-08-16 21:28:24 UTC (rev 3712) @@ -328,7 +328,7 @@ 'text.latex.unicode' : (self.tconfig.text.latex, 'unicode'), 'text.latex.preamble' : (self.tconfig.text.latex, 'preamble'), 'text.dvipnghack' : (self.tconfig.text.latex, 'dvipnghack'), - 'text.markup' : (self.tconfig.text.markup, 'markup'), + 'text.markup' : (self.tconfig.text, 'markup'), 'image.aspect' : (self.tconfig.image, 'aspect'), 'image.interpolation' : (self.tconfig.image, 'interpolation'), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |