diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index cfd3a73e1b0..7cd59c0c1b4 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -647,7 +647,7 @@ These make `python-indent-calculate-indentation' subtract the value of | |||
| 647 | (python-util-forward-comment) | 647 | (python-util-forward-comment) |
| 648 | (current-indentation)))) | 648 | (current-indentation)))) |
| 649 | (if indentation | 649 | (if indentation |
| 650 | (setq python-indent-offset indentation) | 650 | (set (make-local-variable 'python-indent-offset) indentation) |
| 651 | (message "Can't guess python-indent-offset, using defaults: %s" | 651 | (message "Can't guess python-indent-offset, using defaults: %s" |
| 652 | python-indent-offset))))))) | 652 | python-indent-offset))))))) |
| 653 | 653 | ||