From fa87175395764867d8e6eaa2b0f8a7815c0a5ba3 Mon Sep 17 00:00:00 2001 From: Daniel Muckerman Date: Fri, 9 Oct 2015 16:49:30 -0400 Subject: [PATCH] Revert "testing" This reverts commit 807f4313aedbdcc50068f9356bc281eef1eaa2ef. --- slack-mathbot/commands/calculate.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slack-mathbot/commands/calculate.rb b/slack-mathbot/commands/calculate.rb index 9261b23..d39aaea 100644 --- a/slack-mathbot/commands/calculate.rb +++ b/slack-mathbot/commands/calculate.rb @@ -5,7 +5,7 @@ module SlackMathbot command 'calculate' def self.call(client, data, match) - send_message client, data.channel, match[:expression] + send_message client, data.channel, match result = Dentaku::Calculator.new.evaluate(match[:expression]) if match.names.include?('expression') result = result.to_s if result if result && result.length > 0