- resolveNeeded(): remove debugging output


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1668 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2008-04-10 13:05:54 +00:00
parent ed0fb359b7
commit 956c283f85
+2 -4
View File
@@ -2409,7 +2409,6 @@ class etpDatabase:
ldpaths = self.entropyTools.collectLinkerPaths()
mypaths = [os.path.join(x,needed) for x in ldpaths]
print mypaths
query = """
SELECT
@@ -2418,9 +2417,8 @@ class etpDatabase:
content
WHERE
content.file IN (%s)
""" % (
('?,'*len(mypaths))[:-1],
)
""" % ( ('?,'*len(mypaths))[:-1], )
self.cursor.execute(query,mypaths)
results = self.cursor.fetchall()