From: <jd...@us...> - 2008-06-24 17:44:27
|
Revision: 5663 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5663&view=rev Author: jdh2358 Date: 2008-06-24 10:44:09 -0700 (Tue, 24 Jun 2008) Log Message: ----------- fixed rectangle get linestyle bug Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/patches.py Modified: trunk/matplotlib/lib/matplotlib/patches.py =================================================================== --- trunk/matplotlib/lib/matplotlib/patches.py 2008-06-24 17:41:08 UTC (rev 5662) +++ trunk/matplotlib/lib/matplotlib/patches.py 2008-06-24 17:44:09 UTC (rev 5663) @@ -121,7 +121,7 @@ self.set_fill(other.get_fill()) self.set_hatch(other.get_hatch()) self.set_linewidth(other.get_linewidth()) - self.set_linestyle(other.get_linestyle) + self.set_linestyle(other.get_linestyle()) self.set_transform(other.get_data_transform()) self.set_figure(other.get_figure()) self.set_alpha(other.get_alpha()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |