From: <ds...@us...> - 2007-12-06 18:38:57
|
Revision: 4650 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4650&view=rev Author: dsdale Date: 2007-12-06 10:38:55 -0800 (Thu, 06 Dec 2007) Log Message: ----------- undo that last change, mdboom had a different solution that I overlooked Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/figure.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2007-12-06 18:32:44 UTC (rev 4649) +++ trunk/matplotlib/CHANGELOG 2007-12-06 18:38:55 UTC (rev 4650) @@ -1,7 +1,3 @@ -2007-12-06 fixed a bug in savefig, saving to a nonexistent directory - would result in a crash in some circumstances. Closes bug - 1699614 - DSD - 2007-12-06 fixed a bug in rcsetup, see bug 1845057 - DSD =============================================================== Modified: trunk/matplotlib/lib/matplotlib/figure.py =================================================================== --- trunk/matplotlib/lib/matplotlib/figure.py 2007-12-06 18:32:44 UTC (rev 4649) +++ trunk/matplotlib/lib/matplotlib/figure.py 2007-12-06 18:38:55 UTC (rev 4650) @@ -773,9 +773,6 @@ format - one of the file extensions supported by the active backend. """ - path = os.path.abspath(os.path.split(args[0])[0]) - if not os.access(path, os.W_OK): - raise IOError('%s is not a writeable directory'%path) for key in ('dpi', 'facecolor', 'edgecolor'): if not kwargs.has_key(key): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |