Fixed typo

svn: r1127
This commit is contained in:
Don Allingham 2002-08-25 14:30:12 +00:00
parent 6edd3ee8a2
commit 907977aa27

View File

@ -1041,7 +1041,7 @@ def compare_dates(f,s):
return cmp(first.year,second.year)
elif first.month != second.month:
return cmp(first.month,second.month)
else if first.mode == second.mode:
elif first.mode == second.mode:
return cmp(first.day,second.day)
else:
return 1