utils.py
branchtls-sprint
changeset 1132 96752791c2b6
parent 1024 bb96289257bf
child 1134 f885df228fc0
--- a/utils.py	Mon Mar 23 17:38:30 2009 +0100
+++ b/utils.py	Mon Mar 23 17:55:59 2009 +0100
@@ -39,12 +39,11 @@
                     date as parameter, and returning True if the date
                     should be included.
     """
-    date = begin
     incr = timedelta(incr, 0, 0)
-    while date <= end:
-        if include is None or include(date): 
-            yield date
-        date += incr
+    while begin <= end:
+        if include is None or include(begin): 
+            yield begin
+        begin += incr
 
 def ustrftime(date, fmt='%Y-%m-%d'):
     """like strftime, but returns a unicode string instead of an encoded