From e01999c918e61db3dc34b95306078e9d8421b773 Mon Sep 17 00:00:00 2001 From: Sandor Nemes <6277790+snemes@users.noreply.github.com> Date: Fri, 28 Feb 2025 16:00:24 +0100 Subject: [PATCH] Fixed missing whitespace --- README.md | 2 +- speakeasy/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f969f4..b2468e8 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ optional arguments: -k, --emulate-children Emulate any processes created with the CreateProcess APIs after the input file finishes emulating --no-mp Run emulation in the current process to assist instead of a child process. Useful when - debuggingspeakeasy itself (using pdb.set_trace()). + debugging speakeasy itself (using pdb.set_trace()). ``` --- diff --git a/speakeasy/cli.py b/speakeasy/cli.py index 3df67ce..d21673c 100644 --- a/speakeasy/cli.py +++ b/speakeasy/cli.py @@ -242,7 +242,7 @@ def main(): 'input file finishes emulating') parser.add_argument('--no-mp', action='store_true', dest='no_mp', required=False, help='Run emulation in the current process to assist\n' - 'instead of a child process. Useful when debugging' + 'instead of a child process. Useful when debugging ' 'speakeasy itself (using pdb.set_trace()).\n') Main(parser)