Revision: 5011
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5011&view=rev
Author:   mdboom
Date:     2008-03-21 06:10:20 -0700 (Fri, 21 Mar 2008)

Log Message:
-----------
Bugfix: [ 1912719 ] TypeError in Exception __get_configdir()
Thanks, Andrea Tomasini

Modified Paths:
--------------
    branches/v0_91_maint/lib/matplotlib/__init__.py

Modified: branches/v0_91_maint/lib/matplotlib/__init__.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/__init__.py     2008-03-20 20:30:44 UTC 
(rev 5010)
+++ branches/v0_91_maint/lib/matplotlib/__init__.py     2008-03-21 13:10:20 UTC 
(rev 5011)
@@ -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.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to