Merge pull request #1774 from timgates42/bugfix_typo_optional

docs: fix simple typo, optionnal -> optional
pull/1779/head
Nicolas Hennion 2020-12-23 09:11:26 +01:00 committed by GitHub
commit c24c1ca5af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class GlancesStaticServer(object):
for s in ['name', 'port', 'alias']:
new_server[s] = config.get_value(self._section, '%s%s' % (postfix, s))
if new_server['name'] is not None:
# Manage optionnal information
# Manage optional information
if new_server['port'] is None:
new_server['port'] = '61209'
new_server['username'] = 'glances'