From a6dbea1e25351bc60298bf40b2edaaad1276259e Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 08:15:43 +1100 Subject: [PATCH] docs: fix simple typo, optionnal -> optional There is a small typo in glances/static_list.py. Should read `optional` rather than `optionnal`. --- glances/static_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glances/static_list.py b/glances/static_list.py index 29088f51..0a14f6ed 100644 --- a/glances/static_list.py +++ b/glances/static_list.py @@ -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'