From 7d160dbd4387cdff9e79059419ccfdb01569fd11 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 3 Apr 2015 16:53:41 +0200 Subject: [PATCH] typing error in BOSWatch description --- README.md | 2 +- boswatch.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index df8486d..893805b 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ usage: boswatch.py [-h] -f FREQ [-d DEVICE] [-e ERROR] -a [{FMS,ZVEI,POC512,POC1200,POC2400} ...] [-s SQUELCH] [-v] BOSWatch is a Python Script to Recive and Decode BOS Information with rtl_fm -ans multimon-NG +and multimon-NG optional arguments: -h, --help show this help message and exit diff --git a/boswatch.py b/boswatch.py index c25745a..9550802 100644 --- a/boswatch.py +++ b/boswatch.py @@ -3,7 +3,7 @@ ##### Info ##### # BOSWatch -# Python Script to Recive and Decode BOS Information with rtl_fm ans multimon-NG +# Python Script to Recive and Decode BOS Information with rtl_fm and multimon-NG # For more Information see the README.md ##### Info ##### @@ -38,7 +38,7 @@ def stop_script(err): #With -h or --help you get the Args help #ArgsParser -parser = argparse.ArgumentParser(prog="boswatch.py", description="BOSWatch is a Python Script to Recive and Decode BOS Information with rtl_fm ans multimon-NG", epilog="More Options you can find in the extern config.ini File in this Folder") +parser = argparse.ArgumentParser(prog="boswatch.py", description="BOSWatch is a Python Script to Recive and Decode BOS Information with rtl_fm and multimon-NG", epilog="More Options you can find in the extern config.ini File in this Folder") #parser.add_argument("-c", "--channel", help="BOS Channel you want to listen") parser.add_argument("-f", "--freq", help="Frequency you want to listen", required=True) parser.add_argument("-d", "--device", help="Device you want to use (Check with rtl_test)", type=int, default=0)