Fix parsing ignore

https://gitlab.com/pycqa/flake8/issues/40

* Adding an ignore option in [flake8] wasn't working because pep8.StyleGuide
turned the string sent in into a tuple, which the option parser needs to receive
as an iterable that isn't a string. Split on spaces, commas, or semicolons using
re.findall in order to get a list of error/warnings to pass to StyleGuide
properly.

* Add self to contributors
This commit is contained in:
Tyrel Souza 2015-04-29 22:25:04 -04:00
parent d2e873fa9e
commit 8f8a7d458f
3 changed files with 7 additions and 1 deletions

View file

@ -22,3 +22,4 @@ Contributors (by order of appearance) :
- Austin Morton
- Michael McNeil Forbes
- Christian Long
- Tyrel Souza