From a4c83a08c71104d44d25762e7f9f8d16405320e2 Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 9 Apr 2016 04:00:31 -0400 Subject: [PATCH] change name of check_first_run to is_first_run --- lbrynet/lbrynet_daemon/LBRYDaemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbrynet/lbrynet_daemon/LBRYDaemon.py b/lbrynet/lbrynet_daemon/LBRYDaemon.py index 250c82c6d..0ef030026 100644 --- a/lbrynet/lbrynet_daemon/LBRYDaemon.py +++ b/lbrynet/lbrynet_daemon/LBRYDaemon.py @@ -111,7 +111,7 @@ class LBRYDaemon(jsonrpc.JSONRPC): # versions... if not self.announced_startup: - if functionPath not in ['is_running', 'check_first_run', + if functionPath not in ['is_running', 'is_first_run', 'get_time_behind_blockchain', 'stop', 'daemon_status']: return server.failure @@ -873,7 +873,7 @@ class LBRYDaemon(jsonrpc.JSONRPC): log.info("[" + str(datetime.now()) + "] daemon status: " + str(r)) return self._render_response(r, OK_CODE) - def jsonrpc_check_first_run(self): + def jsonrpc_is_first_run(self): try: d = self.session.wallet.is_first_run() except: