From 547bc5a46ebb25c1443d9f2b3dd1f5f700406524 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 28 Oct 2013 04:15:25 +0100 Subject: [PATCH] some more output in lish status --- linspector/frontends/lish.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linspector/frontends/lish.py b/linspector/frontends/lish.py index e12855f..26f1d01 100644 --- a/linspector/frontends/lish.py +++ b/linspector/frontends/lish.py @@ -261,6 +261,9 @@ class LishCommander(Exit): print GREEN + "Job Count" + END + ":\t" + str(self.interface.get_job_count()) thread_info = self.interface.get_thread_count() print GREEN + "Threads" + END + ":\t" + str(thread_info["Num Threads"]) + "/" + str(thread_info["Max Threads"]) + print GREEN + "Lish Version" + END + ":\t" + __version__ + # TODO: print Linspector version + #print GREEN + "Core Version" + END + ":\t" + __linspector_version__ def help_status(self): print('''Show status information about the Linspector instance''')