From: <md...@us...> - 2008-03-21 13:26:39
|
Revision: 5012 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5012&view=rev Author: mdboom Date: 2008-03-21 06:26:27 -0700 (Fri, 21 Mar 2008) Log Message: ----------- Merged revisions 4999-5011 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_91_maint ........ r5011 | mdboom | 2008-03-21 09:10:20 -0400 (Fri, 21 Mar 2008) | 3 lines Bugfix: [ 1912719 ] TypeError in Exception __get_configdir() Thanks, Andrea Tomasini ........ Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/__init__.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Name: svnmerge-integrated - /branches/v0_91_maint:1-4998 + /branches/v0_91_maint:1-5011 Modified: trunk/matplotlib/lib/matplotlib/__init__.py =================================================================== --- trunk/matplotlib/lib/matplotlib/__init__.py 2008-03-21 13:10:20 UTC (rev 5011) +++ trunk/matplotlib/lib/matplotlib/__init__.py 2008-03-21 13:26:27 UTC (rev 5012) @@ -397,7 +397,7 @@ if os.path.exists(p): if not _is_writable_dir(p): - raise RuntimeError("'%s' is not a writable dir; you must set %s/.matplotlib to be a writable dir. You can also set environment variable MPLCONFIGDIR to any writable directory where you want matplotlib data stored "%h) + raise RuntimeError("'%s' is not a writable dir; you must set %s/.matplotlib to be a writable dir. You can also set environment variable MPLCONFIGDIR to any writable directory where you want matplotlib data stored "% (h, h)) else: if not _is_writable_dir(h): raise RuntimeError("Failed to create %s/.matplotlib; consider setting MPLCONFIGDIR to a writable directory for matplotlib configuration data"%h) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |