|
From: <ds...@us...> - 2007-08-20 18:52:40
|
Revision: 3720
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3720&view=rev
Author: dsdale
Date: 2007-08-20 11:52:38 -0700 (Mon, 20 Aug 2007)
Log Message:
-----------
fix verbose reporting with traited config
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/__init__.py
trunk/matplotlib/setup.py
Modified: trunk/matplotlib/lib/matplotlib/__init__.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/__init__.py 2007-08-20 16:11:29 UTC (rev 3719)
+++ trunk/matplotlib/lib/matplotlib/__init__.py 2007-08-20 18:52:38 UTC (rev 3720)
@@ -711,6 +711,8 @@
#print "importing from reorganized config system!"
try:
from config import rcParams, rcdefaults, mplConfig, save_config
+ verbose.set_level(rcParams['verbose.level'])
+ verbose.set_fileo(rcParams['verbose.fileo'])
except:
from config import rcParams, rcdefaults
Modified: trunk/matplotlib/setup.py
===================================================================
--- trunk/matplotlib/setup.py 2007-08-20 16:11:29 UTC (rev 3719)
+++ trunk/matplotlib/setup.py 2007-08-20 18:52:38 UTC (rev 3720)
@@ -64,7 +64,7 @@
try: import setuptools
except ImportError:
raise SystemExit("""\
-matplotlib requires setuptools for installation. Visit:
+matplotlib requires setuptools for installation with python-2.3. Visit:
http://cheeseshop.python.org/pypi/setuptools
for installation instructions for the proper version of setuptools for your
system. If this is your first time upgrading matplotlib with the new
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|