diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2015-10-31 14:15:58 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2015-10-31 14:15:58 +0100 |
commit | a2b80fd90065a5d2711ebc2edd8b74a17562e1fa (patch) | |
tree | 7f13c3077e41fb6ea5485f4c229195304add3b1f /MgaRepo | |
parent | a7e929bece1231efb6fcf0450204aafd014f6571 (diff) | |
download | mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar.gz mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar.bz2 mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar.xz mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.zip |
correction of SVNLogEntry
Diffstat (limited to 'MgaRepo')
-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) |