Revision: 3733 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3733&view=rev Author: mdboom Date: 2007-08-23 10:59:21 -0700 (Thu, 23 Aug 2007)
Log Message: ----------- Extremely minor bugfix that prevents the cycle finder from printing out dictionaries. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/cbook.py Modified: trunk/matplotlib/lib/matplotlib/cbook.py =================================================================== --- trunk/matplotlib/lib/matplotlib/cbook.py 2007-08-23 17:58:49 UTC (rev 3732) +++ trunk/matplotlib/lib/matplotlib/cbook.py 2007-08-23 17:59:21 UTC (rev 3733) @@ -936,7 +936,7 @@ recurse(referent, start, all, current_path + [obj]) for obj in objects: - outstream.write("Examining: %r\n" % obj) + outstream.write("Examining: %r\n" % (obj,)) recurse(obj, obj, { }, []) if __name__=='__main__': 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: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Matplotlib-checkins mailing list Matplotlib-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins