summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2006-08-10 15:53:58 +0200
committerAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2006-08-10 15:53:58 +0200
commita6d73e6f4d1b92c944256e8176f34ef7702e0a76 (patch)
tree3d1866a86503a4a5a451e5e883cfc9dbcd13132c /elisp
parentdb54b8957b38d503f904747fde003682849fd5df (diff)
downloadpylint-a6d73e6f4d1b92c944256e8176f34ef7702e0a76.tar.gz
updated pylint.el
Diffstat (limited to 'elisp')
-rw-r--r--elisp/pylint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/pylint.el b/elisp/pylint.el
index 84f5da6..4ec4058 100644
--- a/elisp/pylint.el
+++ b/elisp/pylint.el
@@ -7,7 +7,7 @@
(interactive)
(let* ((file (buffer-file-name (current-buffer)))
- (command (concat "pylint --parseable=y \"" file "\"")))
+ (command (concat "pylint --output-format=parseable \"" file "\"")))
(save-some-buffers (not compilation-ask-about-save) nil) ; save files.
(compile-internal command "No more errors or warnings" "pylint")))
(local-set-key [f1] 'pylint)