# HG changeset patch # User Kim Alvefur # Date 1435439972 -7200 # Node ID 91a29c964e975ebb83fc41994b5a2191ab68d1eb # Parent e09157903d9393354c79865ec7c85f5f6b23e04f plugins.github: Remove debug prints diff -r e09157903d93 -r 91a29c964e97 plugins/github.lua --- a/plugins/github.lua Sat Jun 27 22:32:23 2015 +0200 +++ b/plugins/github.lua Sat Jun 27 23:19:32 2015 +0200 @@ -18,14 +18,12 @@ base_path[5] = number; base_url.path = url.build_path(base_path); local url = url.build(base_url); - print("url:", url); return url; end bot:hook("commands/issue", function (command) local issue_id = tonumber(command.param); if not issue_id then return; end - print(issue_id); assert(http.request(issue_url(issue_id), ex, function (issue, code) if code > 400 then return command:reply("HTTP Error "..code.." :(");