From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qohsn-0002rK-Lz for garchives@archives.gentoo.org; Wed, 03 Aug 2011 20:17:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 914A521C23D; Wed, 3 Aug 2011 20:17:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5D74621C23D for ; Wed, 3 Aug 2011 20:17:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CCAFD2AC008 for ; Wed, 3 Aug 2011 20:17:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0022F8004A for ; Wed, 3 Aug 2011 20:17:03 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/cli.py X-VCS-Directories: pmstestsuite/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d2e4610798f5001ece5b81ab36a3d7ba3f0a4079 Date: Wed, 3 Aug 2011 20:17:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: f7cd9f11852673a67ec19cdeae284498 commit: d2e4610798f5001ece5b81ab36a3d7ba3f0a4079 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Wed Aug 3 19:21:38 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Wed Aug 3 19:21:38 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Dd2e46107 Fix reporting an error when unable to remove packages. --- pmstestsuite/cli.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pmstestsuite/cli.py b/pmstestsuite/cli.py index 21e3e7b..bd9ee42 100644 --- a/pmstestsuite/cli.py +++ b/pmstestsuite/cli.py @@ -173,7 +173,7 @@ class PMSTestSuiteCLI(object): t.clean(self.pm) if self.pm.has_pending_actions: print('Failed to unmerge the following test ebuilds:') - print(' '.join(installedcpvs)) + print(' '.join(self.pm.pkg_queue)) print('Refusing to proceed.') self.loop.quit() return