There was an error while loading. Please reload this page.
1 parent 1739d62 commit 66e33a8Copy full SHA for 66e33a8
python-environment.el
@@ -114,7 +114,9 @@ https://github.com/tkf/emacs-python-environment/issues/3"
114
(defun python-environment--make-with-runner (proc-runner root virtualenv)
115
(let ((path (convert-standard-filename
116
(python-environment-root-path root)))
117
- (virtualenv (or virtualenv python-environment-virtualenv)))
+ (virtualenv (append (or virtualenv python-environment-virtualenv)
118
+ (when python-environment--verbose
119
+ (list "--verbose")))))
120
(unless (executable-find (car virtualenv))
121
(error "Program named %S does not exist." (car virtualenv)))
122
(funcall proc-runner
0 commit comments