From: <md...@us...> - 2007-08-23 17:59:23
|
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. |