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