From e35b7fc3f5907db89d7ec4d60a90f4ab843f33bf Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Tue, 3 Oct 2017 20:59:41 +0300 Subject: [PATCH] pygnulib.py: fix verbosity level check for notices --- pygnulib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygnulib.py b/pygnulib.py index 0a6a9f8453..b58260a9b9 100755 --- a/pygnulib.py +++ b/pygnulib.py @@ -113,7 +113,7 @@ def import_hook(script, gnulib, namespace, verbosity, options, *args, **kwargs): return os.EX_DATAERR # Show banner notice of every module. - if verbosity >= 1: + if verbosity >= -1: for module in sorted(main): name = module.name notice = module.notice -- 2.39.5