Commit 7e258c66 by Alexander Popov

Rename check_state() according the new meaning

parent cb0711d4
...@@ -182,10 +182,10 @@ def get_option_state(options, name): ...@@ -182,10 +182,10 @@ def get_option_state(options, name):
return options[name] if name in options else None return options[name] if name in options else None
def check_state(options): def perform_checks(parsed_options):
for o in opt_list: for o in opt_list:
opt = o[0] opt = o[0]
opt.state = get_option_state(options, opt.name) opt.state = get_option_state(parsed_options, opt.name)
_, o[1] = opt.check() _, o[1] = opt.check()
...@@ -214,7 +214,7 @@ def check_config_file(fname): ...@@ -214,7 +214,7 @@ def check_config_file(fname):
if option is not None: if option is not None:
parsed_options[option] = value parsed_options[option] = value
check_state(parsed_options) perform_checks(parsed_options)
print_check_results() print_check_results()
if debug_mode: if debug_mode:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment