summaryrefslogtreecommitdiff
path: root/pylint/__pkginfo__.py
diff options
context:
space:
mode:
authorLaura M?dioni <laura.medioni@logilab.fr>2015-11-10 13:36:56 +0100
committerLaura M?dioni <laura.medioni@logilab.fr>2015-11-10 13:36:56 +0100
commit38fd37a36933409625f422cbd7b91740540e3172 (patch)
treefe0d1b372cb7098ceb91ab8725123661ffb77046 /pylint/__pkginfo__.py
parent722446bab92ad13489d73119d534c9a7cf8f8b2c (diff)
downloadpylint-38fd37a36933409625f422cbd7b91740540e3172.tar.gz
Check imports are located at the top of the module (right after docstring and comments)
related to issue #692
Diffstat (limited to 'pylint/__pkginfo__.py')
-rw-r--r--pylint/__pkginfo__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index edac893..2bb45bd 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -18,6 +18,7 @@
from __future__ import absolute_import
import sys
+from os.path import join
modname = distname = 'pylint'
@@ -72,7 +73,6 @@ long_desc = """\
Pylint is shipped with "pylint-gui", "pyreverse" (UML diagram generator)
and "symilar" (an independent similarities checker)."""
-from os.path import join
scripts = [join('bin', filename)
for filename in ('pylint', 'pylint-gui', "symilar", "epylint",
"pyreverse")]