From d36f6b39c70cf0b961a880e85429a99d4928dc9f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 8 Mar 2022 21:29:09 +0530 Subject: [PATCH] Fix previous PR --- kitty/shell_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/shell_integration.py b/kitty/shell_integration.py index 2794b1e02..19d95a6ec 100644 --- a/kitty/shell_integration.py +++ b/kitty/shell_integration.py @@ -172,7 +172,7 @@ def get_effective_ksi_env_var(opts: Optional[Options] = None) -> str: return '' # Use the default when shell_integration is empty due to misconfiguration if 'invalid' in opts.shell_integration: - return defaults.shell_integration + return ' '.join(defaults.shell_integration) return ' '.join(opts.shell_integration)