fix bug starting daemon from status bar
This commit is contained in:
parent
6f1ee78623
commit
a243ac7a01
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ def main():
|
|||
default="true")
|
||||
args = parser.parse_args()
|
||||
|
||||
if args.startdaemon.lower() == "true":
|
||||
if str(args.startdaemon).lower() == "true":
|
||||
subprocess.Popen("screen -dmS lbrynet bash -c 'lbrynet-daemon'", shell=True)
|
||||
|
||||
status_app = DaemonStatusBarApp()
|
||||
|
|
Loading…
Reference in a new issue