From de68519153cf77c53f4e73888f0629812fb7648b Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Mon, 11 Jun 2018 23:03:44 -0400 Subject: [PATCH] Remove superfluous state --- pvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvc.py b/pvc.py index ce339d8d..bc8e6c67 100755 --- a/pvc.py +++ b/pvc.py @@ -179,7 +179,7 @@ def node_list(): if node_daemon_state == 'start': daemon_state_colour = ansiiprint.green() - elif node_daemon_state == 'stop' or node_daemon_state == 'shutdown': + elif node_daemon_state == 'stop': daemon_state_colour = ansiiprint.red() else: daemon_state_colour = ansiiprint.yellow()