Browse Source

Remove unreachable code

283
Neil Booth 9 years ago
parent
commit
a90c935758
  1. 6
      lib/daemon.py

6
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 <start|status|stop>")
print_msg("Daemon not running")
os.close(fd)
Daemon.remove_lockfile(lockfile)
sys.exit(1)

Loading…
Cancel
Save