Skip to content

Commit

Permalink
Merge pull request #55 from DougBurke/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in feed argument of IO_MQTT.get method
  • Loading branch information
brentru committed Nov 23, 2020
2 parents e8dc432 + 2a8edfe commit 05dc812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_io/adafruit_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def get(self, feed_key):
io.get('temperature')
"""
self._client.publish("{0}/feeds{1}/get".format(self._user, feed_key), "\0")
self._client.publish("{0}/feeds/{1}/get".format(self._user, feed_key), "\0")


class IO_HTTP:
Expand Down

0 comments on commit 05dc812

Please sign in to comment.