From 2aa800563e6a9bdbf9aa536efd2a215d2e7c414a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 9 Apr 2009 14:44:20 +0200 Subject: [PATCH] entropy.db: retrieveSignatures, fix typo --- libraries/entropy/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/entropy/db.py b/libraries/entropy/db.py index 02bbd9d2c..8c36b8fb4 100644 --- a/libraries/entropy/db.py +++ b/libraries/entropy/db.py @@ -2507,7 +2507,7 @@ class LocalRepository: WHERE idpackage = (?)""", (idpackage,)) data = self.cursor.fetchone() if data: - mydict['sha1'], mydict['sha256'], mydict['sha512'] = data[0] + mydict['sha1'], mydict['sha256'], mydict['sha512'] = data return mydict def retrieveName(self, idpackage):