From beaacdd1ff53fa43bb4438105ad748173d5b4732 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 16 Feb 2012 06:56:37 -0500 Subject: [PATCH 1/1] Change maxium verbosity setting from 0 to logging.DEBUG. --- bin/update-copyright.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update-copyright.py b/bin/update-copyright.py index cb186f8..9394243 100755 --- a/bin/update-copyright.py +++ b/bin/update-copyright.py @@ -59,7 +59,7 @@ if __name__ == '__main__': action='count', help='Increment verbosity') options,args = p.parse_args() - _LOG.setLevel(max(0, _logging.ERROR - 10*options.verbose)) + _LOG.setLevel(max(_logging.DEBUG, _logging.ERROR - 10*options.verbose)) project = Project() project.load_config(open(options.config, 'r')) -- 2.26.2