lang/python: fix dont-auto-install-server advice

The function being overriden takes no arguments.
This commit is contained in:
Henrik Lissner 2019-07-28 02:27:56 +02:00
parent 19dd4e8db8
commit afc22e4265
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -260,6 +260,6 @@ called.")
;; Installing the server should be a deliberate act; either 'M-x ;; Installing the server should be a deliberate act; either 'M-x
;; lsp-python-ms-setup' or setting `lsp-python-ms-executable' to an existing ;; lsp-python-ms-setup' or setting `lsp-python-ms-executable' to an existing
;; install will do. ;; install will do.
(defadvice! +python--dont-auto-install-server-a (orig-fn) (defadvice! +python--dont-auto-install-server-a ()
:override #'lsp-python-ms--command-string :override #'lsp-python-ms--command-string
lsp-python-ms-executable)) lsp-python-ms-executable))