Comment out tux and cryptopia string additions from .xmrtall
This commit is contained in:
parent
aa52c5ec97
commit
180d6e1aea
16
price.py
16
price.py
|
@ -674,12 +674,12 @@ def xmrtall(bot, trigger):
|
||||||
last=float(i['LastPrice'])
|
last=float(i['LastPrice'])
|
||||||
# change=float(i['Change'])
|
# change=float(i['Change'])
|
||||||
vol=float(i['Volume'])
|
vol=float(i['Volume'])
|
||||||
stringtosend += "Cryptopia last: {0:.6f} {1} on {2:.2f} {1} volume | ".format(last, pair, vol*last)
|
# stringtosend += "Cryptopia last: {0:.6f} {1} on {2:.2f} {1} volume | ".format(last, pair, vol*last)
|
||||||
found = True
|
found = True
|
||||||
if found == False:
|
# if found == False:
|
||||||
bot.say("WTF?!?")
|
# bot.say("WTF?!?")
|
||||||
except:
|
# except:
|
||||||
bot.say("Something borked ( -.-)ノ-=≡≡卍")
|
# bot.say("Something borked ( -.-)ノ-=≡≡卍")
|
||||||
|
|
||||||
# Tux
|
# Tux
|
||||||
try:
|
try:
|
||||||
|
@ -693,9 +693,9 @@ def xmrtall(bot, trigger):
|
||||||
last=float(coin['last'])
|
last=float(coin['last'])
|
||||||
vol=float(coin['baseVolume'])
|
vol=float(coin['baseVolume'])
|
||||||
# change=float(coin['percentChange'])
|
# change=float(coin['percentChange'])
|
||||||
stringtosend += "Tux last: {0:.6f} BTC on {1:.2f} BTC volume. ".format(last, vol)
|
# stringtosend += "Tux last: {0:.6f} BTC on {1:.2f} BTC volume. ".format(last, vol)
|
||||||
except:
|
# except:
|
||||||
bot.say("Something borked ( ︶︿︶)_╭∩╮")
|
# bot.say("Something borked ( ︶︿︶)_╭∩╮")
|
||||||
#Finally... print to IRC
|
#Finally... print to IRC
|
||||||
bot.say(stringtosend[:-1])
|
bot.say(stringtosend[:-1])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue