From a90c93575891e5815d5a448aab3daa5c3f919a58 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 31 Jan 2016 14:53:25 +0900 Subject: [PATCH] Remove unreachable code --- lib/daemon.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/daemon.py b/lib/daemon.py index 794b16c20..5f2b17215 100644 --- a/lib/daemon.py +++ b/lib/daemon.py @@ -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 ") + print_msg("Daemon not running") os.close(fd) Daemon.remove_lockfile(lockfile) sys.exit(1)