Skip to content

Commit

Permalink
Fix missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
arichardson committed Feb 9, 2024
1 parent 8c355ba commit 2656104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycheribuild/boot_cheribsd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def _set_pexpect_sh_prompt(child):
child.sendline(f"PS2='{PEXPECT_CONTINUATION_PROMPT_SET_STR}'")
child.sendline(f"PS1='{PEXPECT_PROMPT_SET_STR}'")
# Find the prompt
child.expect_prompt(timeout=2*60)
child.expect_prompt(timeout=2 * 60)
success("===> successfully set PS1/PS2")


Expand Down

0 comments on commit 2656104

Please sign in to comment.