paetzke / py-autopep8.el

py-autopep8.el integrates autopep8 into Emacs.
GNU General Public License v3.0
79 stars 21 forks source link

Inability to add agressiveness levels higher than 1 #12

Closed DavidSnider closed 9 years ago

DavidSnider commented 9 years ago

No matter what I try setting the py-autopep8-options variable to, I either get 1 of 2 outcomes. Either I do something along the lines of (setq py-autopep8-options '("-a")) and get an aggresssiveness level lower than I want or do something along the lines of (setq py-autopep8-options '("-a -a)) and get an error. Is this an issue with my understanding of the py-autopep8-options variable?

paetzke commented 9 years ago

Hi,

you are trying to use "-a" multiple times? Could you try this:

(setq py-autopep8-options '("-a" "-a"))

Sorry that it took me so long to answer.

DavidSnider commented 8 years ago

Sorry for taking so long as well. That did the trick, thanks!