From c4d944fe374672e4e02166235f65d3cd25b23d34 Mon Sep 17 00:00:00 2001 From: Drew Bonasera Date: Wed, 29 Mar 2017 05:22:18 -0400 Subject: [PATCH] Remove extra } in format string --- glances/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glances/stats.py b/glances/stats.py index 36149019..ce320781 100644 --- a/glances/stats.py +++ b/glances/stats.py @@ -106,7 +106,7 @@ class GlancesStats(object): except Exception as e: # If a plugin can not be log, display a critical message # on the console but do not crash - logger.critical("Error while initializing the {} plugin ({}})".format(name, e)) + logger.critical("Error while initializing the {} plugin ({})".format(name, e)) logger.error(traceback.format_exc()) def load_plugins(self, args=None):