You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
config.yaml
mosquitto login user name is "username".
In /cmd_line/util.py line 26, 27
change:
if config["mqtt"].get("user", None):
user = config["mqtt"]["user"]
to:
if config["mqtt"].get("username", None):
user = config["mqtt"]["username"]
The text was updated successfully, but these errors were encountered:
If I wanted to make the changes myself, would I just navigate to /opt/insteon-mqtt/lib/python3.5/site-packages/insteon_mqtt/cmd_line, open up and edit the lines in util.py to reflect the changes and be done? Or is there some kind of compile process to reflect the changes in the actual program?
config.yaml
mosquitto login user name is "username".
In /cmd_line/util.py line 26, 27
change:
if config["mqtt"].get("user", None):
user = config["mqtt"]["user"]
to:
if config["mqtt"].get("username", None):
user = config["mqtt"]["username"]
The text was updated successfully, but these errors were encountered: