From 907977aa277423bf29ed78ab9e72e354a3699412 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sun, 25 Aug 2002 14:30:12 +0000 Subject: [PATCH] Fixed typo svn: r1127 --- gramps/src/Date.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/src/Date.py b/gramps/src/Date.py index 01856b202..f6a4f679c 100644 --- a/gramps/src/Date.py +++ b/gramps/src/Date.py @@ -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