1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-24 10:50:26 +03:00

In util/arguments.py fixes:

---------------------------
  Few Lines: expected 2 blank lines
  Line: 36 pylint: misplaced-comparison-constant / Comparison should be log_num < 0 (col 7)
  Line: 38 pylint: misplaced-comparison-constant / Comparison should be log_num > 5 (col 7)
  Line: 65 pylint: misplaced-comparison-constant / Comparison should be target_name == 'Computer' (col 7)
  Line: 68 pylint: misplaced-comparison-constant / Comparison should be target_name == 'User' (col 7)
This commit is contained in:
Viktor Volkov 2020-01-17 18:19:01 +04:00
parent 86986e2f4d
commit 137a142b89

View File

@ -20,6 +20,7 @@ import logging.handlers
from .logging import slogm
def set_loglevel(loglevel_num=None):
'''
Set the log level global value.
@ -33,9 +34,9 @@ def set_loglevel(loglevel_num=None):
# A little bit of defensive programming
if not log_num:
log_num = 1
if 0 > log_num:
if log_num < 0:
log_num = 0
if 5 < log_num:
if log_num > 5:
log_num = 5
log_level = 10 * log_num
@ -55,6 +56,7 @@ def set_loglevel(loglevel_num=None):
logger.handlers = [log_stdout, log_syslog]
def process_target(target_name=None):
'''
The target may be 'All', 'Computer' or 'User'. This function
@ -62,10 +64,10 @@ def process_target(target_name=None):
'''
target = 'All'
if 'Computer' == target_name:
if target_name == 'Computer':
target = 'Computer'
if 'User' == target_name:
if target_name == 'User':
target = 'User'
logging.debug(slogm('Target is: {}'.format(target)))