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 5E296138A1F for ; Fri, 18 Apr 2014 16:52:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09CA9E0B0E; Fri, 18 Apr 2014 16:52:31 +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 43F7AE0AFB for ; Fri, 18 Apr 2014 16:52:29 +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 5F3E83403A2 for ; Fri, 18 Apr 2014 16:52:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 11AE818242 for ; Fri, 18 Apr 2014 16:52:26 +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: <1397839837.3dc72b549a24e4daa2c2344338dd0c05c9c1e955.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: 3dc72b549a24e4daa2c2344338dd0c05c9c1e955 X-VCS-Branch: 3.0 Date: Fri, 18 Apr 2014 16:52:26 +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: 3c6cf3e7-066b-4e4b-969e-4f03c764342e X-Archives-Hash: f2df35b95d6d7842eeaf9317c499f933 commit: 3dc72b549a24e4daa2c2344338dd0c05c9c1e955 Author: Brian Dolbec gentoo org> AuthorDate: Sat Mar 1 16:58:24 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Apr 18 16:50:37 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=3dc72b54 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 ..."