From 65a6d6ccc25668248154294c646fd4b56dfb45eb Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 2 Jul 2006 06:43:16 +0000 Subject: Fix import issues reported by pyflakes. svn path=/main/trunk/; revision=3749 --- bin/repoman | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/repoman b/bin/repoman index 59fbb2713..3633582a4 100755 --- a/bin/repoman +++ b/bin/repoman @@ -7,7 +7,7 @@ # Then, check to make sure deps are satisfiable (to avoid "can't find match for" problems) # that last one is tricky because multiple profiles need to be checked. -import os,sys,shutil +import errno, os, shutil, sys if not hasattr(__builtins__, "set"): from sets import Set as set exename=os.path.basename(sys.argv[0]) @@ -34,14 +34,14 @@ import time import codecs from portage_manifest import Manifest +from portage_exception import ParseError -from output import * -#bold, darkgreen, darkred, green, red, turquoise, yellow +from output import bold, darkgreen, darkred, green, nocolor, red, turquoise, yellow from commands import getstatusoutput from fileinput import input from grp import getgrnam -from stat import * +from stat import S_ISDIR, ST_CTIME, ST_GID, ST_MTIME if portage.settings["NOCOLOR"] in ("yes","true") or not sys.stdout.isatty(): nocolor() -- cgit v1.2.3-1-g7c22