Revision: 6064
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6064&view=rev
Author:   ryanmay
Date:     2008-09-04 19:52:42 +0000 (Thu, 04 Sep 2008)

Log Message:
-----------
Fix typo (iterator()->iterable()) for setting linestyles in Collection class.

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/collections.py

Modified: trunk/matplotlib/lib/matplotlib/collections.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/collections.py      2008-09-04 18:29:28 UTC 
(rev 6063)
+++ trunk/matplotlib/lib/matplotlib/collections.py      2008-09-04 19:52:42 UTC 
(rev 6064)
@@ -284,7 +284,7 @@
                                 dashes.append(dashd[cbook.ls_mapper[x]])
                             else:
                                 raise ValueError()
-                        elif cbook.iterator(x) and len(x) == 2:
+                        elif cbook.iterable(x) and len(x) == 2:
                             dashes.append(x)
                         else:
                             raise ValueError()


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 the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to