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) {