diff options
-rw-r--r-- | MgaRepo/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/svn.py b/MgaRepo/svn.py index 9c45aab..50d7498 100644 --- a/MgaRepo/svn.py +++ b/MgaRepo/svn.py @@ -16,7 +16,7 @@ class SVNLogEntry: self.lines = [] def __lt__(self, other): - return (self.date > other.date) + return (self.date < other.date) def __eq__(self,other): return (self.date == other.date) |