From 7c6744704dab498a862817d9832b4fc0a2c8c4b4 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Wed, 10 Mar 2021 10:50:45 +0800 Subject: [PATCH] fix #64: fix help text for seriallog --- meshtastic/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index d67a280..a58c400 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -388,7 +388,7 @@ def common(): else: client = SerialInterface( args.port, debugOut=logfile, noProto=args.noproto) - + sys.exit(0) @@ -407,7 +407,7 @@ def initParser(): parser.add_argument( "--seriallog", - help="Log device serial output to either 'stdout', 'none' or a filename to append to. Defaults to stdout.") + help="Log device serial output to either 'stdout', 'none' or a filename to append to.") parser.add_argument("--info", help="Read and display the radio config information", action="store_true")