|
From: <md...@us...> - 2008-04-22 15:08:00
|
Revision: 5060
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5060&view=rev
Author: mdboom
Date: 2008-04-22 08:06:01 -0700 (Tue, 22 Apr 2008)
Log Message:
-----------
Fix inconsistency between svg.embed_chars and svg.embed_char_paths
Modified Paths:
--------------
branches/v0_91_maint/lib/matplotlib/config/mplconfig.py
Modified: branches/v0_91_maint/lib/matplotlib/config/mplconfig.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/config/mplconfig.py 2008-04-22 15:03:25 UTC (rev 5059)
+++ branches/v0_91_maint/lib/matplotlib/config/mplconfig.py 2008-04-22 15:06:01 UTC (rev 5060)
@@ -99,7 +99,7 @@
class svg(TConfig):
image_inline = T.true
image_noscale = T.false
- embed_chars = T.true
+ embed_char_paths = T.true
class lines(TConfig):
linewidth = T.Float(1.0)
@@ -435,7 +435,7 @@
'pdf.fonttype' : (self.tconfig.backend.pdf, 'fonttype'),
'svg.image_inline' : (self.tconfig.backend.svg, 'image_inline'),
'svg.image_noscale' : (self.tconfig.backend.svg, 'image_noscale'),
- 'svg.embed_char_paths' : (self.tconfig.backend.svg, 'embed_chars'),
+ 'svg.embed_char_paths' : (self.tconfig.backend.svg, 'embed_char_paths'),
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|