summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-07-02 06:43:16 +0000
committerZac Medico <zmedico@gentoo.org>2006-07-02 06:43:16 +0000
commit65a6d6ccc25668248154294c646fd4b56dfb45eb (patch)
treecd6143d9809d1cdd36063e1d2e2b97856564f1a2 /bin/repoman
parentAdd a new parse_use_local_desc() function. (diff)
downloadportage-multirepo-65a6d6ccc25668248154294c646fd4b56dfb45eb.tar.gz
portage-multirepo-65a6d6ccc25668248154294c646fd4b56dfb45eb.tar.bz2
portage-multirepo-65a6d6ccc25668248154294c646fd4b56dfb45eb.zip
Fix import issues reported by pyflakes.
svn path=/main/trunk/; revision=3749
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/repoman b/bin/repoman
index 59fbb271..3633582a 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()