From 2b5f5e925db811280d6f9e5971b3c79647a213b4 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Fri, 29 Nov 2013 01:14:58 +1300 Subject: [PATCH] v --- plugins/bitcoin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bitcoin.py b/plugins/bitcoin.py index 277b822..956c0f2 100755 --- a/plugins/bitcoin.py +++ b/plugins/bitcoin.py @@ -8,7 +8,7 @@ def bitcoin(inp): exchanges = { "mtgox": { "api_url": "https://mtgox.com/api/1/BTCUSD/ticker", - "func": lambda data: u"MtGox // Current: \x0307{}\x0f - High: \x0307{}\x0f - Low: \x0307{}\x0f - Best Ask: \x0307{}\x0f - Volume: {}".format(data['return']['last']['display'], \ + "func": lambda data: u"MtGox // Current: \x0307{}\x0f High: \x0307{}\x0f Low: \x0307{}\x0f Best Ask: \x0307{}\x0f Volume: {}".format(data['return']['last']['display'], \ data['return']['high']['display'], data['return']['low']['display'], data['return']['buy']['display'], \ data['return']['vol']['display']) },