From 25eea6c5b9514bc6ddb9ccebe1dc73df90b07143 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sun, 27 Sep 2020 10:46:46 -0700 Subject: [PATCH] 1.0.14 fix #23 I busted setstr, thanks @mc-hamster for the headup --- meshtastic/__main__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 802e76f..3445467 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -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 []): diff --git a/setup.py b/setup.py index 54e889d..6b789a0 100644 --- a/setup.py +++ b/setup.py @@ -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",