summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-11-09 02:32:25 +0000
committerIan Cordasco <graffatcolmingov@gmail.com>2016-11-09 02:32:25 +0000
commitc2ef3c2ce04717259dc8c430a1756132e2c617a6 (patch)
tree5ffebc941cc003291c6a72ed68f88bd5a53e7258 /src
parent35a35c2a617ac346790180783c616b692d79c03b (diff)
parent901869731b93701bc2ecb6e8334d4baaa8d3ef73 (diff)
downloadflake8-c2ef3c2ce04717259dc8c430a1756132e2c617a6.tar.gz
Merge branch 'master' into 'master'
Fixed E305: expected 2 blank lines after class or function definition See merge request !135
Diffstat (limited to 'src')
-rw-r--r--src/flake8/plugins/pyflakes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py
index 542e5fa..ca22302 100644
--- a/src/flake8/plugins/pyflakes.py
+++ b/src/flake8/plugins/pyflakes.py
@@ -38,6 +38,8 @@ def patch_pyflakes():
for name, obj in vars(pyflakes.messages).items():
if name[0].isupper() and obj.message:
obj.flake8_msg = '%s %s' % (codes.get(name, 'F999'), obj.message)
+
+
patch_pyflakes()