summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/ncurses.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-06-20 12:08:07 -0700
committerChris Larson <chris_larson@mentor.com>2010-06-21 08:05:12 -0700
commit219be63895b20daa646066ae52872ce90a9da1e8 (patch)
treeedc4d84d6d995a899152e3058ceb589b01702d6c /lib/bb/ui/ncurses.py
parent40925230781ddd550bf21d90714c5349f9240a51 (diff)
downloadopenembedded-core-contrib-219be63895b20daa646066ae52872ce90a9da1e8.tar.gz
Apply some 2to3 refactorings
Diffstat (limited to 'lib/bb/ui/ncurses.py')
-rw-r--r--lib/bb/ui/ncurses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/ncurses.py b/lib/bb/ui/ncurses.py
index e3bca2af83..81dcb1998c 100644
--- a/lib/bb/ui/ncurses.py
+++ b/lib/bb/ui/ncurses.py
@@ -266,7 +266,7 @@ class NCursesUI:
mw.appendText("Parsing finished. %d cached, %d parsed, %d skipped, %d masked."
% ( event.cached, event.parsed, event.skipped, event.masked ))
else:
- mw.setStatus("Parsing: %s (%04d/%04d) [%2d %%]" % ( parsespin.next(), x, y, x*100/y ) )
+ mw.setStatus("Parsing: %s (%04d/%04d) [%2d %%]" % ( next(parsespin), x, y, x*100/y ) )
# if isinstance(event, bb.build.TaskFailed):
# if event.logfile:
# if data.getVar("BBINCLUDELOGS", d):