diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-07-02 06:43:16 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-07-02 06:43:16 +0000 |
commit | 65a6d6ccc25668248154294c646fd4b56dfb45eb (patch) | |
tree | cd6143d9809d1cdd36063e1d2e2b97856564f1a2 | |
parent | a6f5ec1a6fb97b33295b1d3960877c04ccbf9d2d (diff) | |
download | portage-65a6d6ccc25668248154294c646fd4b56dfb45eb.tar.gz portage-65a6d6ccc25668248154294c646fd4b56dfb45eb.tar.bz2 portage-65a6d6ccc25668248154294c646fd4b56dfb45eb.zip |
Fix import issues reported by pyflakes.
svn path=/main/trunk/; revision=3749
-rwxr-xr-x | bin/repoman | 8 |
1 files 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() |