From: Zac Medico Date: Sun, 6 Jul 2008 00:01:31 +0000 (-0000) Subject: Fix typo in xterm titles total package count which causes it to show the X-Git-Tag: v2.2_rc2~190 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=45fef7c9adb8ba0004a1e404b0f40cd3eb5fb196;p=portage.git Fix typo in xterm titles total package count which causes it to show the current package instead. Thanks to Arfrever for this patch. svn path=/main/trunk/; revision=10948 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 0665701f7..daa04980d 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -1934,7 +1934,7 @@ class EbuildBuild(EbuildBuildDir): msg = " === (%s of %s) Compiling/Merging (%s::%s)" % \ (pkg_count.curval, pkg_count.maxval, pkg.cpv, ebuild_path) short_msg = "emerge: (%s of %s) %s Compile" % \ - (pkg_count.curval, pkg_count.curval, pkg.cpv) + (pkg_count.curval, pkg_count.maxval, pkg.cpv) logger.log(msg, short_msg=short_msg) build = EbuildExecuter(pkg=pkg, scheduler=scheduler,