pulled from the mtimedb when using --resume. Patch by Alec Warner
(antarus). Code-style cleanups. #74990
svn path=/main/trunk/; revision=2385
if ("--resume" in myopts) and portage.mtimedb.has_key("resume"):
myresumeopts=portage.mtimedb["resume"]["myopts"][:]
- while "--skipfirst" in myresumeopts:
- myresumeopts.remove("--skipfirst")
- while "--ask" in myresumeopts:
- myresumeopts.remove("--ask")
+ for opt in ("--skipfirst", "--ask", "--verbose"):
+ while opt in myresumeopts:
+ myresumeopts.remove(opt)
for myopt in myopts:
if myopt not in myresumeopts: