summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/ide-integration.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/ide-integration.rst b/doc/ide-integration.rst
index 7507fb1..30b48e5 100644
--- a/doc/ide-integration.rst
+++ b/doc/ide-integration.rst
@@ -39,7 +39,6 @@ To enable flymake for Python, insert the following into your .emacs:
.. sourcecode:: common-lisp
;; Configure flymake for Python
- (setq pylint "epylint")
(when (load "flymake" t)
(defun flymake-pylint-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
@@ -47,7 +46,7 @@ To enable flymake for Python, insert the following into your .emacs:
(local-file (file-relative-name
temp-file
(file-name-directory buffer-file-name))))
- (list (expand-file-name pylint "") (list local-file))))
+ (list "epylint" (list local-file))))
(add-to-list 'flymake-allowed-file-name-masks
'("\\.py\\'" flymake-pylint-init)))