Remove unreachable code

This commit is contained in:
Neil Booth 2016-01-31 14:53:25 +09:00
parent 2980b580a7
commit a90c935758
1 changed files with 2 additions and 4 deletions

View File

@ -261,11 +261,9 @@ class Daemon(DaemonThread):
fd = Daemon.get_fd_or_server(lockfile)
if isinstance(fd, int):
subcommand = config.get('subcommand')
assert subcommand in ['start', 'stop', 'status']
if subcommand != 'start':
if subcommand in ['status', 'stop']:
print_msg("Daemon not running")
else:
print_msg("syntax: electrum daemon <start|status|stop>")
print_msg("Daemon not running")
os.close(fd)
Daemon.remove_lockfile(lockfile)
sys.exit(1)