Remove superfluous state

This commit is contained in:
Joshua Boniface 2018-06-11 23:03:44 -04:00
parent bb1b2de77d
commit de68519153
1 changed files with 1 additions and 1 deletions

2
pvc.py
View File

@ -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()