Browse Source

fix(pip): use `pip3` in `pip3 uninstall` completion (#10271)

Oluwafemi Sule 2 years ago
parent
commit
eec34b32fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/pip/_pip

+ 1 - 1
plugins/pip/_pip

@@ -13,7 +13,7 @@ _pip_all() {
 }
 
 _pip_installed() {
-  installed_pkgs=(`pip freeze | cut -d '=' -f 1`)
+  installed_pkgs=($($service freeze | cut -d '=' -f 1))
 }
 
 local -a _1st_arguments