|
From: <ef...@us...> - 2009-09-18 02:48:11
|
Revision: 7780
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7780&view=rev
Author: efiring
Date: 2009-09-18 02:48:03 +0000 (Fri, 18 Sep 2009)
Log Message:
-----------
Fix garbled getp output
Modified Paths:
--------------
branches/v0_99_maint/lib/matplotlib/artist.py
Modified: branches/v0_99_maint/lib/matplotlib/artist.py
===================================================================
--- branches/v0_99_maint/lib/matplotlib/artist.py 2009-09-17 21:44:44 UTC (rev 7779)
+++ branches/v0_99_maint/lib/matplotlib/artist.py 2009-09-18 02:48:03 UTC (rev 7780)
@@ -1001,7 +1001,7 @@
s = s.replace('\n', ' ')
if len(s)>50:
s = s[:50] + '...'
- name = self.aliased_name(name[4:])
+ name = self.aliased_name(name)
lines.append(' %s = %s' %(name, s))
return lines
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|