From ffd96a277d013525d572446e885d74e9703dd42d Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 23 Nov 2022 18:04:30 +0100 Subject: [PATCH] [Newm] Replace ambiguous character --- .config/newm/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/newm/config.py b/.config/newm/config.py index 05188a5..61403d0 100644 --- a/.config/newm/config.py +++ b/.config/newm/config.py @@ -22,7 +22,7 @@ debug_windows = False def run_shell(command: str): """Run a shell command asynchronously - If the shell command doesn’t already end with "&", add it. + If the shell command doesn't already end with "&", add it. """ if not command.endswith("&"): command = command + " &"