Remove extra } in format string

pull/1073/head
Drew Bonasera 2017-03-29 05:22:18 -04:00
parent a997733fc3
commit c4d944fe37
1 changed files with 1 additions and 1 deletions

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