don't touch tunnel on platforms where it might be missing

This commit is contained in:
Kevin Hester
2020-12-27 16:03:33 +08:00
parent 728d7f4a1d
commit 3bfec71e0a
2 changed files with 2 additions and 2 deletions

View File

@@ -317,7 +317,7 @@ def common():
if args.info or args.set or args.seturl or args.setowner or args.setlat or args.setlon or \
args.settime or \
args.setch_longslow or args.setch_shortfast or args.setstr or args.setchan or args.sendtext or \
args.tunnel or args.router != None or args.qr:
args.router != None or args.qr:
args.seriallog = "none" # assume no debug output in this case
else:
args.seriallog = "stdout" # default to stdout

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.1.28",
version="1.1.29",
description="Python API & client shell for talking to Meshtastic devices",
long_description=long_description,
long_description_content_type="text/markdown",