summaryrefslogtreecommitdiffstats
path: root/glances/client_browser.py
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2016-03-19 23:08:00 +0100
committernicolargo <nicolashennion@gmail.com>2016-03-19 23:08:00 +0100
commitd841781d01712ac119f08a3eb0e15b783718a15f (patch)
tree9e36e9d80ebca29df6d9161606dd64657146ee0d /glances/client_browser.py
parent85203539c75f36689e9275b2a6805c901224978b (diff)
Browsing for servers which are in the [serverlist] seems to be broken #819
Diffstat (limited to 'glances/client_browser.py')
-rw-r--r--glances/client_browser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glances/client_browser.py b/glances/client_browser.py
index cfcf01a2..61628689 100644
--- a/glances/client_browser.py
+++ b/glances/client_browser.py
@@ -160,7 +160,7 @@ class GlancesClientBrowser(object):
"Server list dictionnary change inside the loop (wait next update)")
# Update the screen (list or Glances client)
- if not self.screen.active_server:
+ if self.screen.active_server is None:
# Display the Glances browser
self.screen.update(self.get_servers_list())
else: