command.
svn path=/main/trunk/; revision=7918
for x in msg:
portage.writemsg(">>> %s\n" % x)
+from portage.exception import UnsupportedAPIException
checked_for_stale_env = False
for arg in pargs:
except KeyError:
# aux_get error
a = 1
+ except UnsupportedAPIException, e:
+ from textwrap import wrap
+ msg = wrap(str(e), 70)
+ del e
+ for x in msg:
+ portage.writemsg("!!! %s\n" % x, noiselevel=-1)
+ a = 1
if a == None:
print "Could not run the required binary?"
a = 127