From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-734360-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 685C413838B for <garchives@archives.gentoo.org>; Fri, 26 Sep 2014 02:17:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8B8DE0996; Fri, 26 Sep 2014 02:17:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A122E09C6 for <gentoo-commits@lists.gentoo.org>; Fri, 26 Sep 2014 02:17:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 066473401A3 for <gentoo-commits@lists.gentoo.org>; Fri, 26 Sep 2014 02:17:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B03FC6470 for <gentoo-commits@lists.gentoo.org>; Fri, 26 Sep 2014 02:17:20 +0000 (UTC) From: "Brian Dolbec" <brian.dolbec@gmail.com> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" <brian.dolbec@gmail.com> Message-ID: <1411622473.0003b53405b1e44e4e441ada5337d2b5ff3a7b5a.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 0003b53405b1e44e4e441ada5337d2b5ff3a7b5a X-VCS-Branch: master Date: Fri, 26 Sep 2014 02:17:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 42f2bd69-7fc0-4619-b314-86201c6f32b6 X-Archives-Hash: e69ae77a5bfb6e751d58977c63eb4fdb commit: 0003b53405b1e44e4e441ada5337d2b5ff3a7b5a Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Thu Sep 25 05:21:13 2014 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com> CommitDate: Thu Sep 25 05:21:13 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=0003b534 setup.py: fix import line --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f68dc58..96cfade 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,15 @@ from distutils.dep_util import newer from distutils.dir_util import mkpath, remove_tree from distutils.util import change_root, subst_vars -import codecs, collections, errno, glob, os, os.path, re, subprocess, sys +import codecs +import collections +import glob +import os +import os.path +import re +import subprocess +import sys + # TODO: # - smarter rebuilds of docs w/ 'install_docbook' and 'install_epydoc'.