From df40861795e7d124185eb4c691e4818756c7b996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Dunand?= Date: Thu, 23 May 2013 17:25:05 +0200 Subject: [PATCH] Remove reference to Debian package sorting algorithm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sébastien Luttringer --- installsystems/tools.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/installsystems/tools.py b/installsystems/tools.py index f2e592c..0dcc04b 100644 --- a/installsystems/tools.py +++ b/installsystems/tools.py @@ -589,8 +589,6 @@ def compare_versions(v1, v2): return > 0 if v1 > v2 return < 0 if v2 > v1 return = 0 if v1 == v2 - - This uses the Debian package version sorting algorithm (see 'man deb-version') ''' # Ensure versions have the right format -- GitLab