From: <jd...@us...> - 2008-05-28 16:51:41
|
Revision: 5290 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5290&view=rev Author: jdh2358 Date: 2008-05-28 09:51:39 -0700 (Wed, 28 May 2008) Log Message: ----------- reverting due to PDF problem Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/ticker.py Modified: trunk/matplotlib/lib/matplotlib/ticker.py =================================================================== --- trunk/matplotlib/lib/matplotlib/ticker.py 2008-05-28 16:46:53 UTC (rev 5289) +++ trunk/matplotlib/lib/matplotlib/ticker.py 2008-05-28 16:51:39 UTC (rev 5290) @@ -423,7 +423,7 @@ # reformat 1x10^y as 10^y significand = '' if exponent: - exponent = u'10^{%s%s}'%(sign, exponent) + exponent = '10^{%s%s}'%(sign, exponent) if significand and exponent: return r'%s{\times}%s'%(significand, exponent) else: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |