make code pep8 compliant

This commit is contained in:
Václav Pokluda
2014-08-01 13:55:56 +02:00
parent 52958b9910
commit 5ef374e5e7

View File

@@ -339,7 +339,8 @@ class croniter(object):
def _get_next_nearest_diff(self, x, to_check, range_val):
for i, d in enumerate(to_check):
if d == "l":
#if 'l' then it is the last day of month => its value of range_val
# if 'l' then it is the last day of month
# => its value of range_val
d = range_val
if d >= x:
return d - x