Skip to content

Commit

Permalink
fixup! pyln: Apply early_opts just like opts in TailableProc
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Jan 23, 2024
1 parent b6d1a2a commit 84a409b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions contrib/pyln-testing/pyln/testing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,12 +658,6 @@ def cleanup(self):
def cmd_line(self):

opts = []
for k, v in self.early_opts.items():
if v is None:
opts.append(f'--{k}')
else:
opts.append(f'{k}={v}')

for k, v in list(self.early_opts.items()) + list(self.opts.items()):
if v is None:
opts.append("--{}".format(k))
Expand Down

0 comments on commit 84a409b

Please sign in to comment.