Remove extra prints
This commit is contained in:
parent
d3eb3a7908
commit
9fb67b2e1e
|
@ -16,11 +16,9 @@ end
|
||||||
local function download_get(req)
|
local function download_get(req)
|
||||||
local host = http_request_get_host(req)
|
local host = http_request_get_host(req)
|
||||||
local path = http_request_get_path(req)
|
local path = http_request_get_path(req)
|
||||||
print("host:",host,"path:",path)
|
|
||||||
http_request_populate_qs(req)
|
http_request_populate_qs(req)
|
||||||
local story = assert(http_argument_get_string(req,"story"))
|
local story = assert(http_argument_get_string(req,"story"))
|
||||||
local story_id = util.decode_id(story)
|
local story_id = util.decode_id(story)
|
||||||
print("Downloading", story_id)
|
|
||||||
stmnt_download:bind_names{
|
stmnt_download:bind_names{
|
||||||
postid = story_id
|
postid = story_id
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue