From 13e21110459aaf99dd739802c2b07b3d5b9e2a68 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 28 Feb 2007 16:37:24 +0000 Subject: * Unifying placement of REPLACES in desc file, as pacman2 does. We'll worry about bigger DB changes later, but lets not screw anything up for release. * Removed some weird uses of "not ... ==" usage in pactest- correct me if I'm wrong, but isn't "!=" a lot more clean and concise? * Print description of failed tests in the pactest summary. This could get dirty with a lot of failed tests though, so watch out. --- pactest/pmfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pactest/pmfile.py') diff --git a/pactest/pmfile.py b/pactest/pmfile.py index 71a0cd7c..99b14a8b 100755 --- a/pactest/pmfile.py +++ b/pactest/pmfile.py @@ -52,8 +52,8 @@ def ismodified(self): vprint("\t\told: %s / %s" % (self.checksum, self.mtime)) vprint("\t\tnew: %s / %s" % (checksum, mtime)) - if not self.checksum == checksum \ - or not (self.mtime[1], self.mtime[2]) == (mtime[1], mtime[2]): + if self.checksum != checksum \ + or (self.mtime[1], self.mtime[2]) != (mtime[1], mtime[2]): retval = 1 return retval -- cgit v1.2.3-54-g00ecf