From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DE7C213873B for ; Sat, 1 Mar 2014 18:51:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7697FE0AC6; Sat, 1 Mar 2014 18:51:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18744E0AC6 for ; Sat, 1 Mar 2014 18:51:57 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2715833FAF2 for ; Sat, 1 Mar 2014 18:51:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id DA22E183B3 for ; Sat, 1 Mar 2014 18:51:55 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1393695377.c86002b3a49b109cd8424dcba85e8133711c47d4.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/clearbase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: c86002b3a49b109cd8424dcba85e8133711c47d4 X-VCS-Branch: 3.0 Date: Sat, 1 Mar 2014 18:51:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 41d8412d-5485-419a-bf7c-2c0c914b02ab X-Archives-Hash: 29e03ca5fc7d3a81708ab779353f2569 commit: c86002b3a49b109cd8424dcba85e8133711c47d4 Author: Brian Dolbec gentoo org> AuthorDate: Sat Mar 1 16:58:24 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sat Mar 1 17:36:17 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=c86002b3 catalyst/base/clearbase.py: Fix remove parameter mistakes. fixes commit: 02b3cb7a8d5c9d8d21105feda6868080416721c1 Add remove_chroot and remove_autoresume functions. Brian Dolbec gentoo.org> (Tue 31 Dec 2013 01:04:29 AM PST) --- catalyst/base/clearbase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalyst/base/clearbase.py b/catalyst/base/clearbase.py index a9f1d22..b2c1a11 100644 --- a/catalyst/base/clearbase.py +++ b/catalyst/base/clearbase.py @@ -55,10 +55,10 @@ class ClearBase(object): if any(k in self.settings["options"] for k in ("purge", "purgeonly", "purgetmponly")): print "purge(); clearing autoresume ..." - self.clear_autoresume(remove) + self.clear_autoresume() print "purge(); clearing chroot ..." - self.clear_chroot(remove) + self.clear_chroot() if "purgetmponly" not in self.settings["options"]: print "purge(); clearing package cache ..."