fixed missing comma

This commit is contained in:
2018-09-08 13:30:39 -07:00
parent 998ea261e8
commit a0a92f17ec

View File

@@ -45,8 +45,8 @@ def instant( client, data, cfg ):
def price( client, data, cfg ):
msg = {
"time" : data.TimeUnix,
"price" : data.Price
"tier" : data.Tier
"price" : data.Price,
"tier" : data.Tier,
}
return ( cfg.mqttPrice, msg )