From: Éric Araujo Date: Thu, 9 Feb 2012 20:17:46 +0000 (+0100) Subject: Remove unneeded import X-Git-Tag: v3.3.0a1~202^2~16^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac03a2b089ff73edb7a4080e51715a6e7d015b1d;p=thirdparty%2FPython%2Fcpython.git Remove unneeded import --- diff --git a/Lib/packaging/util.py b/Lib/packaging/util.py index 5b651b1eebc7..fff919c95837 100644 --- a/Lib/packaging/util.py +++ b/Lib/packaging/util.py @@ -1049,7 +1049,6 @@ def cfg_to_args(path='setup.cfg'): SETUP_TEMPLATE = """\ # This script was automatically generated by packaging -import os import codecs from distutils.core import setup try: @@ -1057,6 +1056,7 @@ try: except ImportError: from configparser import RawConfigParser + %(split_multiline)s %(cfg_to_args)s