1.0.14 fix #23 I busted setstr, thanks @mc-hamster for the headup

This commit is contained in:
geeksville
2020-09-27 10:46:46 -07:00
parent cca38a04ee
commit 25eea6c5b9
2 changed files with 2 additions and 2 deletions

View File

@@ -113,7 +113,7 @@ def onConnected(interface):
# Handle the string arguments
for pref in (args.setstr or []):
interface.radioConfig.preferences, setPref(pref[0], pref[1])
setPref(interface.radioConfig.preferences, pref[0], pref[1])
# Handle the channel settings
for pref in (args.setchan or []):

View File

@@ -12,7 +12,7 @@ with open("README.md", "r") as fh:
# This call to setup() does all the work
setup(
name="meshtastic",
version="1.0.13",
version="1.0.14",
description="Python API & client shell for talking to Meshtastic devices",
long_description=long_description,
long_description_content_type="text/markdown",