mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
black formatting
This commit is contained in:
parent
801d6f9566
commit
7e8e2403cd
1 changed files with 15 additions and 4 deletions
|
@ -221,15 +221,26 @@ def parse_args(parser):
|
|||
def setup_global_opts(parser):
|
||||
try: # the buildserver VM might not have PIL installed
|
||||
from PIL import PngImagePlugin
|
||||
|
||||
logger = logging.getLogger(PngImagePlugin.__name__)
|
||||
logger.setLevel(logging.INFO) # tame the "STREAM" debug messages
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
parser.add_argument("-v", "--verbose", action="store_true", default=False,
|
||||
help=_("Spew out even more information than normal"))
|
||||
parser.add_argument("-q", "--quiet", action="store_true", default=False,
|
||||
help=_("Restrict output to warnings and errors"))
|
||||
parser.add_argument(
|
||||
"-v",
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
default=False,
|
||||
help=_("Spew out even more information than normal"),
|
||||
)
|
||||
parser.add_argument(
|
||||
"-q",
|
||||
"--quiet",
|
||||
action="store_true",
|
||||
default=False,
|
||||
help=_("Restrict output to warnings and errors"),
|
||||
)
|
||||
|
||||
|
||||
def set_console_logging(verbose=False):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue