提交 7edcd3e4 编写于 作者: N Nicolargo

Verbose message if the MatPlotLib lib is not installed - issue #428

上级 3b2d6eb2
......@@ -515,7 +515,12 @@ class GlancesCurses(object):
self.display_popup(_("Reset history"))
self.glances_history.reset(stats)
elif (self.history_tag or self.reset_history_tag) and not self.args.enable_history:
self.display_popup(_("History disabled\nEnable it using --enable-history"))
try:
self.glances_history.graph_enabled()
except:
self.display_popup(_("History disabled\nEnable it using --enable-history"))
else:
self.display_popup(_("History disabled\nPlease install MatPlotLib"))
self.history_tag = False
self.reset_history_tag = False
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册