summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
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)