From: Jaime Marquínez Ferrándiz Date: Tue, 16 Dec 2014 19:38:59 +0000 (+0100) Subject: flake8: Add more ignored files X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=a16af518735cb0301731900914c84f26823e9372 flake8: Add more ignored files * setup.py: the '__version__' variable is not defined in the script, it is loadded from youtube_dl/version.py * devscripts/buildserver.py: Produces a lot of messages --- diff --git a/setup.cfg b/setup.cfg index 8659b5069..898defb9d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,5 +2,5 @@ universal = True [flake8] -exclude = youtube_dl/extractor/__init__.py +exclude = youtube_dl/extractor/__init__.py,devscripts/buildserver.py,setup.py ignore = E501