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 ): def price( client, data, cfg ):
msg = { msg = {
"time" : data.TimeUnix, "time" : data.TimeUnix,
"price" : data.Price "price" : data.Price,
"tier" : data.Tier "tier" : data.Tier,
} }
return ( cfg.mqttPrice, msg ) return ( cfg.mqttPrice, msg )