From 03e12ae15ce04755b62d0721ab2ffce2b2c57b70 Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Fri, 22 May 2020 20:22:30 -0700 Subject: [PATCH] Update propka/lib.py I cannot spell. Co-authored-by: Oliver Beckstein --- propka/lib.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/propka/lib.py b/propka/lib.py index fc2da5a..0a1f688 100644 --- a/propka/lib.py +++ b/propka/lib.py @@ -211,7 +211,7 @@ def build_parser(parser=None): group.add_argument("-k", "--keep-protons", dest="keep_protons", action="store_true", help="Keep protons in input file", default=False) group.add_argument("-q", "--quiet", action="store_const", const="WARNING", - dest="log_level", help="supress non-warning messages") + dest="log_level", help="suppress non-warning messages") group.add_argument("--protonate-all", dest="protonate_all", action="store_true", help="Protonate all atoms (will not influence pKa calculation)", default=False) @@ -324,4 +324,3 @@ def debug(*args): def warning(*args): """Log a WARN message""" logger.warning(_args_to_str(args)) -