chg: Config - check_update defaults to true

To be consistent with the default config in conf/glances.conf
This commit is contained in:
Raz Crimson 2023-02-24 00:24:40 +05:30
parent 42f53f7e9e
commit f16f213925

View File

@ -173,11 +173,7 @@ class Config(object):
if not self.parser.has_section('global'):
self.parser.add_section('global')
self.set_default('global', 'strftime_format', '')
# check_update
if not self.parser.has_section('global'):
self.parser.add_section('global')
self.set_default('global', 'check_update', 'false')
self.set_default('global', 'check_update', 'true')
# Quicklook
if not self.parser.has_section('quicklook'):