diff options
author | Brett Cannon <brett@python.org> | 2014-08-29 12:26:11 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-08-29 12:26:11 -0400 |
commit | a09fa4a4117b00a23a6e826dbce9754f107faa7e (patch) | |
tree | 86c0994954c5da5b6ab763a56437ba91c29a5ff2 /setup.py | |
parent | 69246b081384898ac770b871d4ae5d93136a2ed9 (diff) | |
download | pylint-git-a09fa4a4117b00a23a6e826dbce9754f107faa7e.tar.gz |
Use absolute imports
--HG--
branch : python_6
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ # with pylint. If not, see <http://www.gnu.org/licenses/>. """Generic Setup script, takes package info from __pkginfo__.py file. """ -from __future__ import print_function +from __future__ import absolute_import, print_function __docformat__ = "restructuredtext en" import os |