aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageialinux-online.org>2015-10-31 14:15:58 +0100
committerPapoteur <papoteur@mageialinux-online.org>2015-10-31 14:15:58 +0100
commita2b80fd90065a5d2711ebc2edd8b74a17562e1fa (patch)
tree7f13c3077e41fb6ea5485f4c229195304add3b1f
parenta7e929bece1231efb6fcf0450204aafd014f6571 (diff)
downloadmgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar
mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar.gz
mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar.bz2
mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.tar.xz
mgarepo-a2b80fd90065a5d2711ebc2edd8b74a17562e1fa.zip
correction of SVNLogEntry
-rw-r--r--MgaRepo/svn.py2
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)