John et al,
Ran into this bug in lines.py:  The Verbose class in __init__.py doesn't 
have a method named report_error - just report.

Ted

===================================================================
--- lines.py    (revision 2870)
+++ lines.py    (working copy)
@@ -430,7 +430,7 @@
          ACCEPTS: [ '-' | '--' | '-.' | ':' | 'steps' | 'None' | ' ' | '' ]
          """
          if linestyle not in self._lineStyles:
-            verbose.report_error('Unrecognized line style 
%s,%s'%(linestyle, type(linestyle)))
+            verbose.report('Unrecognized line style %s,%s'%(linestyle, 
type(linestyle)))
          if linestyle in [' ','']:
              linestyle = 'None'
          self._linestyle = linestyle
@@ -448,7 +448,7 @@

          """
          if marker not in self._markers:
-            verbose.report_error('Unrecognized marker style %s, %s'%( 
marker, type(marker)))
+            verbose.report('Unrecognized marker style %s, %s'%( marker, 
type(marker)))
          if marker in [' ','']:
              marker = 'None'
          self._marker = marker
Ted Drain     Jet Propulsion Laboratory   [EMAIL PROTECTED]    



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to