This commit is contained in:
Luke Rogers 2013-11-29 11:55:07 +13:00
parent 9bc72bc57f
commit d78f96b3ec
2 changed files with 3 additions and 3 deletions

View File

@ -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'])
},

View File

@ -166,11 +166,11 @@ def mcping(inp):
try:
host, port = parse_input(inp)
except Exception as e:
return ex.args[0]
return e.args[0]
try:
return mcping_modern(host, port)
except socket.error:
try:
return mcping_legacy(host, port)
except:
return "The server {}:{} looks offline from here.".format(host, port)
return "The server {} ({}:{}) looks offline from here.".format(inp, host, port)