diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2015-03-23 12:57:46 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2015-03-23 12:57:46 +0000 |
commit | 6bc02d5c0249a422a667484ca7da79329b41cacb (patch) | |
tree | 158ee68ab6f4eca1afaa8d7a62e7e90a9f711424 /aports.lua | |
parent | 7c0d021b018b4e8022b4c6343f69e91690e7f0f8 (diff) | |
download | aports-turbo-6bc02d5c0249a422a667484ca7da79329b41cacb.tar.bz2 aports-turbo-6bc02d5c0249a422a667484ca7da79329b41cacb.tar.xz |
remove debug print
Diffstat (limited to 'aports.lua')
-rwxr-xr-x | aports.lua | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -105,7 +105,6 @@ function QueryContents(filename, pkgname, arch, page) local dbh = assert(DBI.Connect('SQLite3', 'db/filelist.db')) local sth = assert(dbh:prepare('select * from filelist where file like ? and pkgname like ? and arch like ? limit ?,50')) sth:execute(filename, pkgname, arch, (page - 1) * 50) - print((page - 1) * 50) local r = {} for row in sth:rows(true) do r[#r + 1] = { |