app/soc/logic/dicts.py
changeset 2073 6eb9b4652c80
parent 1899 c841800f3727
child 2177 e2c193e1f631
--- a/app/soc/logic/dicts.py	Fri Apr 03 17:29:36 2009 +0000
+++ b/app/soc/logic/dicts.py	Fri Apr 03 17:30:36 2009 +0000
@@ -168,10 +168,10 @@
     tmpresult = []
 
     # Iterate over all we gathered so far
-    for filter in result:
+    for current_filter in result:
       for value in values:
         # Create a new dict from the current filter
-        newdict = dict(filter)
+        newdict = dict(current_filter)
 
         # And create a new dict that also has the current key/value pair
         newdict[key] = value