Remove extra } in format string

This commit is contained in:
Drew Bonasera
2017-03-29 05:22:18 -04:00
parent a997733fc3
commit c4d944fe37

View File

@@ -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):