From 8dcde520998722c493e1a00701a10c618ca60af7 Mon Sep 17 00:00:00 2001 From: reality Date: Sun, 30 Jun 2013 15:11:56 +0000 Subject: [PATCH] few small jimblings --- modules/poll/pages.js | 2 -- modules/quotes/commands.js | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/poll/pages.js b/modules/poll/pages.js index 9fc08b8..59309c8 100644 --- a/modules/poll/pages.js +++ b/modules/poll/pages.js @@ -33,8 +33,6 @@ var pages = function(dbot) { }); }); } else { - console.log(err); - console.log("the thing the thing"); res.render('error', { 'name': dbot.config.name, 'message': 'No polls under that key.' diff --git a/modules/quotes/commands.js b/modules/quotes/commands.js index f47c7ee..cc8b53b 100644 --- a/modules/quotes/commands.js +++ b/modules/quotes/commands.js @@ -8,7 +8,7 @@ var commands = function(dbot) { // Add a quote to a category '~qadd': function(event) { - var key = event.input[1].toLowerCase().trim(); + var key = event.input[1].toLowerCase().trim(), quote = event.input[2]; this.api.addQuote(key, quote, event.user, function(newCount) {