From 5d40dd01930e258b7d8da89a99da2dc2b63b2172 Mon Sep 17 00:00:00 2001 From: topkecleon Date: Tue, 3 May 2016 22:50:01 -0400 Subject: [PATCH] wat --- plugins/currency.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/currency.lua b/plugins/currency.lua index ebcd834..53ca411 100755 --- a/plugins/currency.lua +++ b/plugins/currency.lua @@ -45,8 +45,9 @@ local action = function(msg) end - local output = '*' .. amount .. ' ' .. from .. ' = ' .. result .. ' ' .. to .. '*\n\n' - output = output .. '`' .. os.date('!%F %T UTC') .. '\nSource: Google Finance`' + local output = amount .. ' ' .. from .. ' = ' .. result .. ' ' .. to .. '\n' + output = output .. os.date('!%F %T UTC') .. '\nSource: Google Finance' + output = '```\n' .. output .. '\n```' sendMessage(msg.chat.id, output, true, nil, true)