From 1242b090b9d26290f06d37a2e48ee34323596dde Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Sat, 29 May 2021 14:55:09 -0600 Subject: [PATCH] remove S from genPSKS256 on line 329 Found [here](https://meshtastic.discourse.group/t/ch-add-admin-not-working-on-1-2-36/3432) on the forum. --- meshtastic/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 46f1aa5..67ac977 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -326,7 +326,7 @@ def onConnected(interface): if not ch: raise Exception("No free channels were found") chs = channel_pb2.ChannelSettings() - chs.psk = genPSKS256() + chs.psk = genPSK256() chs.name = args.ch_add ch.settings.CopyFrom(chs) ch.role = channel_pb2.Channel.Role.SECONDARY