From 34ae7d9bec0c5eee7d4f79a4c72bcef34bf880ba Mon Sep 17 00:00:00 2001 From: Andris Raugulis Date: Fri, 2 Sep 2016 16:31:16 +0300 Subject: [PATCH] Fix typos. --- ssh-audit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssh-audit.py b/ssh-audit.py index 5cd1972..34e002c 100755 --- a/ssh-audit.py +++ b/ssh-audit.py @@ -634,7 +634,7 @@ def parse_args(): except getopt.GetoptError as err: usage(str(err)) for o, a in opts: - if o in ('-h', '--hep'): + if o in ('-h', '--help'): usage() elif o in ('-b', '--batch'): out.batch = True @@ -642,7 +642,7 @@ def parse_args(): out.colors = False elif o in ('-v', '--verbose'): out.verbose = True - elif o in ('-l', '--level='): + elif o in ('-l', '--level'): if a not in ('info', 'warn', 'fail'): usage('level ' + a + ' is not valid') out.minlevel = a