Skip to content

Commit 89012aa

Browse files
committed
Merge pull request #22 from proofit404/revert-16-include-anaconda-virtualenvs
Revert 1b4af83
2 parents 188b71b + 819d36a commit 89012aa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pyenv-mode.el

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@
5454

5555
(defun pyenv-mode-versions ()
5656
"List installed python versions."
57-
(let ((versions (concat (shell-command-to-string "pyenv versions --bare")
58-
(shell-command-to-string "pyenv virtualenvs --bare"))))
59-
(delete-dups (cons "system" (split-string versions)))))
57+
(let ((versions (shell-command-to-string "pyenv versions --bare")))
58+
(cons "system" (split-string versions))))
6059

6160
(defun pyenv-mode-read-version ()
6261
"Read virtual environment from user input."

0 commit comments

Comments
 (0)