From 3e522ba7872a9815afea41f500e03eabe4ee540e Mon Sep 17 00:00:00 2001 From: Nallagatla Manikanta Date: Wed, 10 Oct 2018 02:50:48 +0530 Subject: [PATCH] Add the pwsh support for thefuck (#844) --- thefuck/shells/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thefuck/shells/__init__.py b/thefuck/shells/__init__.py index 9fedf25b..3da6497d 100644 --- a/thefuck/shells/__init__.py +++ b/thefuck/shells/__init__.py @@ -16,7 +16,8 @@ shells = {'bash': Bash, 'zsh': Zsh, 'csh': Tcsh, 'tcsh': Tcsh, - 'powershell': Powershell} + 'powershell': Powershell, + 'pwsh': Powershell} def _get_shell_from_env():