[CMF-checkins] CVS: CMF/CMFCollector - util.py:1.6

Ken Manheimer klm@zope.com
Fri, 26 Oct 2001 20:26:06 -0400


Update of /cvs-repository/CMF/CMFCollector
In directory cvs.zope.org:/tmp/cvs-serv11047

Modified Files:
	util.py 
Log Message:
sorted(): Work fine on tuple input.


=== CMF/CMFCollector/util.py 1.5 => 1.6 ===
 
 def sorted(l):
-    x = l[:]
+    x = list(l[:])
     x.sort()
     return x