Skip to content

Commit

Permalink
Fixed bool value check
Browse files Browse the repository at this point in the history
  • Loading branch information
elgatito committed Jul 10, 2023
1 parent 691ee60 commit c567c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/site-packages/elementum/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def start_elementumd(**kwargs):
time.sleep(delay)

proc = None
if not force_library:
if force_library != u"true":
try:
proc = subprocess.Popen(args, **kwargs)
except Exception as e:
Expand Down

0 comments on commit c567c57

Please sign in to comment.