changeset 39025:07f510484a33

pygnulib.py: fix verbosity level check for notices
author Dmitry Selyutin <ghostmansd@gmail.com>
date Tue, 03 Oct 2017 20:59:41 +0300
parents 3cff201d38a4
children f7768d4abf0b
files pygnulib.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pygnulib.py	Tue Oct 03 10:52:48 2017 +0300
+++ b/pygnulib.py	Tue Oct 03 20:59:41 2017 +0300
@@ -113,7 +113,7 @@
         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