File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,9 @@ Fixed:
275275 windows service. Also the windows installer must be run as
276276 administrator and strong encouragement for installing the pytz
277277 module added to ``doc/installation.txt``.
278-
278+ - issue2550776: imapServer.py problem. Fixed a missing initialization of the
279+ logging level if no logging level option is supplied. (John Rouillard)
280+
2792812016-01-11: 1.5.1
280282
281283Pay attention:
Original file line number Diff line number Diff line change @@ -354,6 +354,9 @@ def main():
354354 parser .error ('Invalid number of arguments. '
355355 'Each site needs a home and a server.' )
356356
357+ if opts .verbose == None :
358+ opts .verbose = logging .WARNING
359+
357360 log .setLevel (opts .verbose )
358361 myServer = IMAPServer (delay = opts .delay , pidfile = opts .pidfile ,
359362 daemon = opts .daemon )
You can’t perform that action at this time.
0 commit comments