Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8c4a4d2

Browse files
committed
Extremely minor bugfix that prevents the cycle finder from printing
out dictionaries. svn path=/trunk/matplotlib/; revision=3733
1 parent 2afba2a commit 8c4a4d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/cbook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ def recurse(obj, start, all, current_path):
936936
recurse(referent, start, all, current_path + [obj])
937937

938938
for obj in objects:
939-
outstream.write("Examining: %r\n" % obj)
939+
outstream.write("Examining: %r\n" % (obj,))
940940
recurse(obj, obj, { }, [])
941941

942942
if __name__=='__main__':

0 commit comments

Comments
 (0)