update TODO, fix and test md5check in reagent, add client directory

git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@276 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2007-04-09 23:31:49 +00:00
parent 7676db1a19
commit aefef71edd
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -997,7 +997,7 @@ class etpDatabase:
def retrievePackageVarFromBinaryPackage(self,binaryPkgName,pkgvar):
# search binary package
result = []
self.cursor.execute('SELECT "'+pkgvar+'" FROM etpData WHERE download LIKE "%'+binaryPkgName+'%"')
self.cursor.execute('SELECT "'+pkgvar+'" FROM etpData WHERE download = "'+etpConst['binaryurirelativepath']+binaryPkgName+'"')
for row in self.cursor:
result.append(row[0])
if len(result) > 0: